@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

*,
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: 'Roboto';
    background: #18151A;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

.content h1 {
    font-size: 20px;
    padding-top: 30px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.content p {
    font-size: 28px;
    font-weight: 100;
    text-align: center;
}


.content a .btn {
    height: 4em;
    line-height: 3em;
    padding-left: 2em;
    padding-right: 2em;
    border: solid 1px white;
    border-radius: 4em;
    font-size: 16px;
    text-decoration: none;
    color: white;
    letter-spacing: 1px;
    font-weight: 100;
    margin-top: 1em;
}

.content a .btn:hover {
    color: white;
}
