.fullscreen {
    height: 100vh;
    margin: 0;
}

.fullscreen iframe {
    height: 100%;
}

@font-face {
    font-family: Circular Std;
    src: url("CircularStd-Book.otf") format("opentype");
}

.hidden {
    display: none !important;
}

h1 {
    font-family: Circular Std;
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 41px;
}

p {
    font-family: Circular Std;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
}

.site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    margin: 0px;
    background-color: #F3F3F6;
}

.site-content {
    flex: 1;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    margin-top: 7vh;
}

.main-container {
    background-color: white;
    border-radius: 12px;
    min-height: 10vh;
    width: 80%;
    text-align: center;
    padding: 20px;
}

.main-container a {
    color: black;
}

.top-logo {
    clear: both;
}

.logo-img {
    width: 160px;
    margin-bottom: 40px;
}

footer {
    height: 60px;
    max-height: 60px;
    width: 100%;
    background-color: #2A173E;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

footer section {
    padding: 0px 20px;
}

a {
    text-decoration: none;
}

footer a {
    font-family: Circular Std;
    font-style: normal;
    font-weight: bold;
    font-size: 11px;
    line-height: 20px;
    color: white;
}

.logo-white {
    height: 30px;
}

.loader {
    width: 80%
}

@media (min-width: 768px) {
    .main-container {
        width: 580px;
        padding: 40px;
    }
    .logo-img {
        width: 236px;
        margin-bottom: 60px;
    }
    h1 {
        font-size: 40px;
        line-height: 51px;
    }
    p {
        font-size: 24px;
        line-height: 36px;
    }
    footer {
        height: 120px;
        max-height: 120px;
    }
    .logo-white {
        height: 40px;
    }
    footer a {
        font-size: 20px;
        line-height: 28px;
    }
    .loader {
        width: 50%;
    }
}