
html,
body,
div {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: center;
    float: left;
    background-color: #000;
    color: #fff;
}

.container {
    width: 100vw;
    height: 100dvh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    text-shadow: 0 0 .8em rgba(0,0,0,.6);

    background-image: url('../img/garin-chadwick-pecs-5NKxhk-unsplash.jpg');
    background-size: max(120vw, 100vh);
    background-position: 50% 50%;
    animation-delay: 0s;
    animation-duration: 15s;
    animation-name: panoramic;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    will-change: background-position-x;
}

@media (orientation: portrait) {
    @keyframes panoramic {
        0% {
            background-position-x: 47.5%;
        }

        50% {
            background-position-x: 52.5%;
        }

        100% {
            background-position-x: 47.5%;
        }
    }
}
@media (orientation: landscape) {
    @keyframes panoramic {
        0% {
            background-position-x: 40%;
        }

        50% {
            background-position-x: 60%;
        }

        100% {
            background-position-x: 40%;
        }
    }
}


.header {
    margin-top: 5vh;
}

.logo {
    line-height: 90%;
    background-color: transparent;
}

.logo.topline {
    font-weight: 900;
    font-size: 6vmin;
    text-transform: uppercase;
}

.logo.bottomline {
    font-weight: 200;
    font-size: 4.5vmin;
    letter-spacing: 0.71em;
    text-indent: 0.71em;
    text-transform: uppercase;
}

.content {
    font-weight: 300;
    font-size: 9vmin;
    letter-spacing: 0.05em;
}

.footer {
    margin-bottom: 5vh;
    font-weight: 400;
    font-size: 2vmin;
    letter-spacing: 0.355em;
    text-indent: 0.355em;
    text-transform: uppercase;
}

a,
a:link,
a:hover,
a:visited,
a:active {
    text-decoration: none;
    color: #fff;
    padding: 2vmin;
}

.footer a:hover {
    border-bottom: 2px solid white;
}