@font-face {
    font-family: "Univers";
    font-stretch: condensed;
    src: url("assets/webfonts/UniversLTW04-57Condensed.woff2") format("woff2"),
        url("assets/webfonts/UniversLTW04-57Condensed.woff") format("woff");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    background: black;
}
body {
    min-height: 100vh;
    font-family: "Univers", sans-serif;
    position: relative;
    overflow: hidden;
    color: white;
    line-height: 1;
}

a {
    color: inherit;
    text-decoration: none;

    font-size: 2.5vw;
}

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: black;
}

.page-title {
    position: absolute;
    left: 2vw;
    top: 2vw;

    font-size: 32px;
    color: white;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1;

    z-index: 999;
    max-width: 70vw;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 0 2vw 2vw 2vw;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}
.left {
    padding-right: 2vw;
}
.right {
    display: flex;
    justify-content: space-between;
}
.release-date {
    font-size: 32px;
    text-transform: uppercase;
    margin-right: 2vw;
}
.instagram {
    font-size: 32px;
    text-transform: uppercase;
}
.instagram img {
    height: 23px;
}

.left img {
    width: 100%;
}

@media screen and (max-width: 640px) {
    .page-title {
        font-size: 23px;
        max-width: 80vw;
        left: 3vw;
        top: 3vw;
    }
    video {
        object-fit: contain;
        transform: scale(1.4) translateY(-40px);
    }
    footer {
        flex-direction: column;
        align-items: center;
        padding: 0 3vw 3vw 3vw;
    }
    .left {
        padding-right: 0;
        width: 75%;
    }
    .right {
        width: 100%;
        justify-content: center;
        margin-bottom: 12px;
    }
    .release-date {
        font-size: 16px;
        margin-right: 16px;
    }
    .instagram {
        font-size: 16px;
    }
    .instagram img {
        height: 12px;
    }
}

@media screen and (max-width: 1080px) {
    footer {
        align-items: center;
        flex-direction: column;
    }
    .left {
        padding: 0;
    }
    .left img {
        margin-bottom: 2vw;
    }
}
