html, body{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, Helvetica, sans-serif;
}

main{
    flex: 1;
}

.menu{
    display: flex;
    gap: 15px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 20px;
}

.menu a{
    text-decoration: none;
    color: black;
}

.active{
    text-decoration: underline;
}

.menu-footer img{
    border-radius: 100%;
    height: 30px;
}

.logo img{
    height: 150px;
    border-radius: 20%;
}

#gallery {
    display: flex;
    gap: 10px;
    margin: 100px;
    max-width: 80%;
    max-height: 100%;
}

#gallery img{
    height: 300px;
}

#about-me {
    line-height: 1.7;
    margin: 100px;
    max-width: 50%;
    max-height: 50%;
}

.lightbox{
    display:none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img{
    max-width: 80%;
    max-height: 80%;
}

#close{
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}