@import url("gambarino.css");
@import url("satoshi.css");

* {
    font-family: "Satoshi", sans-serif;
    color: #001427;
    text-decoration: none;
}

body {
    margin: 0;
    background: #e4e4e4;
    position: relative;
    margin: 0 15vw;
}

h1 {
    font-family: "Gambarino-Regular", "Times New Roman", Times, serif;
}

#logo,
main,
footer {
    position: relative;
    width: 100%;
    text-align: center;
}

#logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: max(calc(100vh - 100px), 120px);
}

h1 {
    font-size: 52px;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
}

.sub #logo {
    height: max(30vh, 150px);
}

h2 {
    font-weight: 550;
    margin: 0 0 20px 0;
}

h3 {
    font-weight: 500;
    margin: 30px 0 10px 0;
}

p {
    font-weight: 450;
    margin: 0;
}

main {
    display: none;
}

.sub main {
    display: block;
    position: relative;
    text-align: left;
    padding: 0 20px 50px 20px;
}

footer {
    margin: 0 0 50px 0;
    width: calc(100% - 60px);
    padding: 13px 30px;
    border-radius: 24px;
    background-color: #ffffff;
}

footer::after {
    content: "";
    display: block;
    clear: both;
}

footer a {
    float: left;
    font-weight: 590;
    font-size: 15px;
    margin-right: 20px;
}

footer a:last-of-type {
    float: right;
    margin-right: 0px;
}

@media screen and (max-width: 700px) {
    footer a {
        float: none !important;
        display: block;
    }

    footer a:last-of-type {
        margin-top: 10px;
    }
}

@media screen and (max-width: 600px) {
    body {
        margin: 0 7.5vw;
    }
}

@media screen and (max-width: 550px) {
    h1 {
        font-size: 45px;
    }
}

@media screen and (max-width: 330px) {
    h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 280px) {
    h1 {
        font-size: 30px;
    }
}