html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Bebas Neue', sans-serif;
    text-decoration: none;
    list-style: none;

}

body {
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    min-height: 100lvh;
}

header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background-image: url(images/PAYSAGE/2BE2CB3A-7518-4275-BB3F-E5AAD76677D2.JPG);
    background-size: cover;
    background-attachment: fixed;
    background-position: 0 -10em;
    height: 300px;
    letter-spacing: 0.3rem;
    color: whitesmoke;
    padding: 10px;
}

h1 {
    font-size: 50px;
    color: whitesmoke;
    margin: 0;



}

h2 {
    font-size: 40px;
    color: whitesmoke;
    margin: 0px;

}

nav {
    font-size: 20px;
    color: whitesmoke;
    text-align: right;
    line-height: 25px;

}

nav a {
    color: whitesmoke;
}

nav a:hover {
    border-bottom: 1px solid;
    background: darkolivegreen;
}

nav a:focus {
    border-bottom: 1px solid;
    background: darkolivegreen;
}

.image {
    column-count: 3;
    column-gap: 10px;
    margin: 10px;

}

.image img {
    max-width: 100%;
    display: block;
    margin-bottom: 10px;
}

.image div {
    position: relative;
    overflow: hidden;
}


.image div .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    background-color: whitesmoke;
    display: flex;
    color: black;
    font-size: 90px;
    justify-content: center;
    align-items: center;
    transform: scale(30) rotate(30deg);
    transition: opacity .5s ease, transform 1s ease;
}

.image div:hover .overlay {
    opacity: 0.6;
    transform: unset;
}



footer {
    margin-top: auto;
    width: 100%;
    height: 5em;
    background-color: rgb(35, 69, 41);
    border-top: 2px rgb(21, 34, 29) solid;
    border-radius: 90;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;


}

.logo img {
    display: block;
    height: 50px;
    width: 50px;
    margin: 10px;
}