*,
*:before,
*:after {
    box-sizing: inherit;
}

html,
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-size: 62.5%;
    background: #111;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    color: #f9f9f9;
    font-family: "stevie-sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 1.8rem;
    line-height: 1.55em;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    background: linear-gradient(70deg, #02090c 0%,#010405 100%);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga" on;
}

::selection {
    text-shadow: none;
    background: rgb(36, 162, 254, 0.80);
    color: #f9f9f9;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.4s ease;
    background-color: transparent;
}

    a:hover {
        color: rgb(36, 162, 254);
        transition: 0.2s ease;
        outline: 0;
    }

h1, h2, h3 {
    margin: 0;
    color: #f9f9f9;
    font-weight: 700;
    text-rendering: optimizeLegibility;
}

section {
    height: 100%;
    max-width: 1000px;
    padding: 8vmin;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1 {
    font-size: 7rem;
    font-weight: 700;
    line-height: 1.05em;
}

h2 {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.5em;
    letter-spacing: 0.3px;
    margin: 5px 0 20px;
    text-indent: -1px;
}

hr {
    display: inline-block;
    margin: 10px 0 0 0;
    height: 8px;
    width: 100%;
    max-width: 100px;
    border: none;
    background: #f9f9f9;
}

p {
    max-width: 760px;
    margin: 35px 0;
    font-size: 2.4rem;
    line-height: 1.55em;
    font-weight: 300;
    color: #7ba1bd;
}

nav {
    margin: 2vw 0 0 0;
}

    nav a {
        display: inline-block;
        margin: 0 2vw 0 0;
        letter-spacing: 0.5px;
        color: #7ba1bd;
        font-weight: 400;
    }

footer p {
    font-size: 1.6rem;
    font-weight: 200;
}

@media (max-width: 800px) {
    h1 {
        font-size: 4.5rem;
    }

    h2 {
        font-size: 4rem;
    }
}

@media (max-width: 600px) {
    nav {
        display: flex;
        flex-direction: column;
    }

        nav a {
            margin: 10px 0 0 0;
        }
}
