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: 100vh;
}

header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background-image: url(images/PORTRAIT/IMG_9615.JPG);
    background-size: cover;
    background-attachment: fixed;
    background-position: 0 -25em;
    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;
    opacity: 0.7;
    animation: slideDown 5s;
    transition: opacity 0.5s;
}


.image img:hover {
    opacity: 1;
}


@keyframes slideDown {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.7;
    }
}



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;
}