@font-face {
  font-family: 'Jersey_10'; /* Nom personnalisé de la police */
  src: url('../Work/files_portfolio/Jersey_10/Jersey10-Regular.woff') format('woff')
}

@font-face  {
	font-family: 'Roboto_Mono';
  	src: url(../Work/files_portfolio/Roboto_Mono/static/RobotoMono-regular.woff) format('woff');
}

body {
	background-color: black;
}



p{
	font-family: Roboto_Mono;
	color: #D9D9D9;
}

img{
	height: auto;
	width: 100%;
}

/* style header */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 10;
}

.logo{
	font-family: Jersey_10;
	font-size: 40px;
	color: #9B79BD;
	justify-content: top;
}

.burger {
  width: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  z-index: 11;
}

.burger div {
  height: 4px;
  background: #9B79BD;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 66%;
  height: 100vh;
  background: #1E1E1E;
  padding: 150px 30px;
  justify-content: top;
  display: none; /* start hidden */
  flex-direction: column;
  gap: 15px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

.mobile-menu a {
  color: #9B79BD;
  text-decoration: none;
  font-size: 18px;
  font-family: Roboto_Mono;
}

.mobile-menu a:active {
	color: #18FF56;
}

.mobile-menu.open {
  display: flex;
}

.burger.open div:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger.open div:nth-child(2) {
  opacity: 0;
}

.burger.open div:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* Project Description */

.project_name{
	font-family: Jersey_10;
	color: #9B79BD;
	font-size: 20px;
}

.specialisation{
	font-family: Roboto_Mono;
	color: #D9D9D9;
	font-size: 13px;
}



/* Projet 4 */

.project_5 {
	display: grid;
	grid-template-columns: 1fr;
	
}

.project_description {
	display: grid;
	grid-template-columns: 1fr;
	padding: 5px;
}

.carrousel{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5px;
}




/* Desktop */
@media only screen and (min-width: 900px) {

/* Header */

.burger {
    display: none;
}
.mobile-menu {
	height: 50px;
	width: 66%;
    position: fixed;
    display: flex !important;
    flex-direction: row;
    gap: 30px;
    box-shadow: none;
    background: none;
    padding-top: 20px;
	justify-content: right;
	
}

.mobile-menu a:hover, a:active {
	color: #18FF56;
}

/* Projet 1 */


.project_5 {
	display: grid;
	grid-template-columns: 1fr;
	
}

.project_description {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 10px;
}


}
