* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

@font-face {font-family:Blastimo ; src:url("polices/BLASTIMO.ttf")
}
@font-face {font-family:Pilowlava ; src:url("polices/Pilowlava-Regular.otf")
}
@font-face {font-family:Turen ; src:url("polices/TurenDroneRegular.ttf")
}

.anton-regular {
    font-family: "Anton", serif;
    font-weight: 400;
    font-style: normal;
  }
  
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background:#333;
    color: #faebd7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: sandybrown;
    font-family: Turen;
}


.nav-links {
    display: none;
    color:antiquewhite;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: large;
    transition: color 0.3s;
    font-family:Pilowlava ;
}

.nav-link {
    color:antiquewhite;
    text-decoration: none;
    justify-content: right;
    padding: 0.5rem 1rem;
    font-size: large;
    transition: color 0.3s;
    font-family:Pilowlava ;
}

.nav-link:hover {
    color:antiquewhite;
}

h1 {
    text-align: center;
    margin-top: 100px; /* Ajuste selon la hauteur de ta navbar */
    font-size: 5rem; /* Ajuste la taille si nécessaire */
    font-family: Turen, sans-serif;
}

  /* Styles pour les boxes */
  .content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: 50px;
    padding: 20px;
}

.photo-box {
    border-radius: 15px;
    background-color: #333;
    color: #faebd7;
    padding: 20px;
    font-family:Turen;
    font-size: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 60%;
    height: 610px;
}
#lienprojet{
    color: #333;
    background-color: sandybrown;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    font-family:Turen ;
    border-radius: 20px;
}

.text-box, .extra-box {
    background-color: #333;
    border-radius: 15px;
    color: #faebd7;
    padding: 20px;
    font-family:Turen;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 30px;
   
}

.text-box {
    margin-bottom: 20px;
    height: 380px;
    font-family: "Anton", serif;
    width: 600px;
}

.extra-box {
    height: 150px;
    background-color: sandybrown;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    
}

.extra-box img {
    width: 100px; /* Ajuste la taille selon besoin */
    height: 100px; /* Assure une taille uniforme */
}

/* Alignement vertical pour les deux petites boxes */
.right-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}


/* Footer*/
.footer-credit{
    background-color: #333;
    color: antiquewhite;
    text-align: center;
    font-family:"Anton", serif;
    position: absolute;
    bottom: -1000;
    padding: 10px;
    z-index: 15;
    width: 100%;
}