@font-face {
    font-family: "Gotham Extra Light";
    src: url("fonts/Gotham-ExtraLight.eot");
    src: url("fonts/Gotham-ExtraLight.eot?#iefix")
            format("embedded-opentype"),
        url("fonts/Gotham-ExtraLight.woff2")
            format("woff2"),
        url("fonts/Gotham-ExtraLight.woff")
            format("woff"),
        url("fonts/Gotham-ExtraLight.ttf")
            format("truetype"),
        url("fonts/Gotham-ExtraLight.svg#Gotham-ExtraLight")
            format("svg");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Gotham Book";
    src: url("fonts/Gotham-Book.eot");
    src: url("fonts/Gotham-Book.eot?#iefix")
            format("embedded-opentype"),
        url("fonts/Gotham-Book.woff2")
            format("woff2"),
        url("fonts/Gotham-Book.woff")
            format("woff"),
        url("fonts/Gotham-Book.ttf")
            format("truetype"),
        url("fonts/Gotham-Book.svg#Gotham-Book")
            format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
body {
    font-family: "Gotham Extra Light", sans-serif;
    font-weight: 100;
    font-size: 1.15rem;
    position: relative;
    background-color: rgba(0, 0, 0, 0.8);
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: #be9b52;
}
body .container {
    width: 100%;
    padding: 50px;
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    text-align: center;
    justify-content: center;
    align-items: center;
}
body .container img {
    max-width: 200px;
}
body .container h1 {
    max-width: 600px;
    font-family: "Gotham Book", sans-serif;
    font-weight: 300;
    font-size: 1.9rem;
    margin-bottom: 20px;
}
body .container h4 {
    max-width: 500px;
    margin: 0 0 10px 0;
    font-weight: 100;
}
body .container h4 strong {
    font-weight: bold;
}
@media (max-width: 768px) {
    body .container {
        padding: 0;
        transform: translate(-50%, -50%) scale(0.75);
    }
    body .container h4 {
        font-size: 1.3rem;
    }
    body .container h1,
    body .container h4 {
        max-width: auto;
    }
}
.d-flex {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
}
.d-flex a {
    text-decoration: none;
    color: #be9b52;
}
.d-flex a:hover {
    text-decoration: underline;
}
