body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    overflow-x: hidden;
}
#nav{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 8vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #fffffe;
}
#nav a{
    color: #000001;
    text-decoration: none;
    font-size: 1.5rem;
}
.photoGalBox{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1vw;
}
.photoGal{
    width: 30vw;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1; 
    object-fit: contain;   
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}
#photos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vh;
    padding-top: 8vh;
}


@media (max-width: 400px) {
    #nav a{
        font-size: 1.5rem;
    }
}
@media (max-width: 300px) {
    #nav a{
        font-size: 1.2rem;
    }
}
@media (max-width: 200px) {
    #nav a{
        font-size: 0.6rem;
    }
}