body {
    background-color: black;
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    color: #fff;
    font-size: 8pt;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-align: center;
}

.highlight {
    font-weight: 600;
    color: #d93542;
}

#main {
    height: 100vh;
}

.flex {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.intro {
    position: absolute;
}

.intro .text {
    font-size: 32pt;
    line-height: 42pt;
}

@media only screen and (max-width: 600px) {
    .intro {
        margin-top: -16px;
    }

    .intro .text {
        font-size: 18pt;
        line-height: 28pt;
    }
}

@media only screen and (max-width: 320px) {
    .intro {
        margin-top: -8px;
    }

    .intro .text {
        font-size: 16pt;
        line-height: 24pt;
    }
}

.intro ::-moz-selection {
    background-color: transparent;
}

.intro ::selection {
    background-color: transparent;
}

.button {
    border: 2px solid #fff;
    box-sizing: inherit;
    cursor: pointer;
    display: inline-block;
    font-size: 16pt;
    padding: 10px 20px;
    transition: all 0.5s;
}

#main .button {
    margin-top: 32px;
}

.button:hover {
    background-color: #5ea689;
    border-color: #5ea689;
}

