* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

#tailleFenetre {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 20px;
    background: green;
}

main {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ABA291;
    color: #fff;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
    width: 100vw;
    background: #656C5C;

}

h1 {
    font-size: 75px;
    letter-spacing: 10px;
    margin: 20px 0 20px 0;
}

p {
    font-size: 18px;
    letter-spacing: 3px;
    font-style: italic;
    text-align: center;
}

a {
    margin-bottom: 80px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    border: 2px solid #43483c;
    color: #2f322b;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: .3s;
}

a:hover {
    background: #2f322b;
    color: #ABA291;
}

#galerie {
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 2vmin;
}

#galerie li {
    list-style-type: none;
    height: 250px;
    flex-grow: 1;
}

#galerie img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .3s;
    border-radius: 8px;
    -webkit-box-shadow: 0px 0px 8px 3px #898174; 
    box-shadow: 0px 0px 8px 3px #898174;
}
#galerie img:hover {
    scale: 105%;
    -webkit-box-shadow: 0px 0px 8px 8px #898174; 
    box-shadow: 0px 0px 8px 8px #898174; 
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

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

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}