/*
@font-face {
    font-family: 'NeueHaas';
    src: url('./assets/fonts/NeueHaas/NeueHaasDisplay-Roman.woff2') format('woff2'),
        url('./assets/fonts/NeueHaas/NeueHaasDisplay-Roman.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NeueHaas';
    src: url('./assets/fonts/NeueHaas/NeueHaasDisplay-Light.woff2') format('woff2'),
        url('./assets/fonts/NeueHaas/NeueHaasDisplay-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
    */

:root {
    --bg-color: #000;
    --white: #fff;
    overscroll-behavior: none;
}

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    background-color: var(--bg-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding: 0;
    margin: 0;

    font-weight: 300;
}

body,
body * {
    color: var(--white);
    font-size: 17px;
}

#content {
    height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
}

.container {
    text-align: center;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

h1,
h2,
h3 {
    font-weight: 300;
    margin: 0;
}

h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

#text {
    z-index: 1;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

p {
    margin-top: 0;
    margin-bottom: 26px;
    word-break: keep-all;
}

img {
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Custom */
.automargin {
    margin-left: auto;
    margin-right: auto;
}

.max-400 {
    max-width: 400px;
}

.reveal {
    visibility: hidden;
}

/* Responsive */
@media(max-width: 991px) {
    #logo {
        top: 20px;
        left: 16px;
        max-width: calc(50% - 58px);
    }

    #logo img {
        max-height: 17.7px;
    }

    h1 {
        font-size: 30px;
    }

}