@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');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
	background-color: black;
}

h1 {
	font-family: Jersey_10;
}

h3 {
	font-family: Jersey_10;
	color: #18FF56;
	font-size: 30px;
}

p{
	font-family: Roboto_Mono;
	font-size: 15px;
}

a {
  text-decoration: none;
  color: #18FF56;
  font-family: Roboto_Mono;
}

a:hover{
  color: #9B79BD;
  
}

ul {
  justify-content: center;
  padding: 100px:
}

li {
  padding: 10px;
}

/* 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 icon */
.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 (hidden by default) */
.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);
}

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

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

/* When menu is active, show it */
.mobile-menu.open {
  display: flex;
}

/* ANIMATION for burger transform */
.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);
}

/* Contact page */

.Contact_details {
    padding: 50px;
}

.email , .socials {
    padding: 10px;
}

.email p , .socials p {
    color: #D9D9D9;
	font-family: Roboto_Mono;
    padding-left: 10px;
}

/* 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;
}