* {
    font-family: 'SF Pro Display', serif;
    margin: 0;
    padding: 0;
    background-color: #010101;
    color: white;
    text-decoration: none;
}

body {
    margin: 25vh 30px 0px 30px;
}

main {
    text-align: center;
    height: 70vh;
}

h3 {
    font-weight: 500;
    font-size: 3em;
}

h1 {
    font-weight: 700;
    font-size: 12em;
}

footer {
    height: 4vh;
    text-align: center;
}

h6 {
    font-weight: 500;
    font-size: 1em;
}

@media(max-width: 400px) {
    body {
        margin: 30px 30px 0px 30px;
    }

    main {
        text-align: center;
        height: 90vh;
    }

    h3 {
        font-weight: 500;
        font-size: 1.5em;
    }

    h1 {
        font-weight: 700;
        font-size: 6em;
    }

    footer {
        height: 4vh;
        display: none;
    }

}