body {
    background-color: black;
    margin: 0;
}
header {
    /* display: block;
    flex-direction: column;
    align-items: center; */
    padding-left: 300px;
    background: black;
    color: white;
    font-size: 30px;
    display: flex;
    margin: 20px 20px 20px 20px;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 99;
    justify-content: space-between;
    
    /* flex-wrap: wrap; */
}

nav { 
    color: white;
    display: flex;
    gap: 0px;
    align-items: center;
    justify-content: space-between;
    margin-right: 10px;
    text-decoration-line: none;
    
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
 font-weight: 400;
 font-size: 30px;
    font-family: "allumi-std", sans-serif; 
}
nav > a {
    color: white;
    display: flex;
    align-items: center;
    margin: 25px 25px 25px 100px;
    text-decoration-line: none;
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    font-weight: 400;
    font-family: "allumi-std", sans-serif;
    font-style: italic;
}
.headerlink:hover {
    color: #F56642;
    display: flex;
    gap: 100px;
    margin-right: 50px;
    font-size: 40px;
    text-decoration-line: none;
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    font-family: "zenon", sans-serif; font-weight: 400; font-style: italic;
    font-family: "allumi-std", sans-serif;
}



.PhotoSetting {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    /* flex-direction: column;
    align-content: center; */
    
    opacity: 0;
    transform: translateY(80px);
    transition: opacity  3.5s ease-out, transform 3.5s ease-out;
}
.PhotoSetting.show {
    opacity: 1;
    transform: translateY(0);
}


.photoImg {
    width: 100%;
    max-width: 500px; 
    height: auto;
    object-fit: cover;
    flex: 1 1 auto;

}

#nav-links {
    background-color: black;
} 
@media (max-width: 768px) {
    .burger {
      display: block;
      margin-left: 300px;
      color: white;
    }
  
    nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 10px;
      background-color: white;
      padding: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
  
    nav.active {
      display: flex;
    }
}
