html,
body {
    margin: 0;
    background-color: #212121;
    color: white;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

h1 {
    font-size: 5rem;
    font-weight: 100;
    margin: 2rem 0 1rem;
    color: #afeabe;
}

p {
    font-size: 1.5rem;
    margin: 1rem 20vw 2rem;
    color: #bbb;
}

a {
    color: #afeabe;
}

b {
    font-weight: 500;
}

#links {
    display: flex;
    flex-direction: column;
    width: 90vw;
    align-items: center;
    margin: 1rem 5vw;
}

.club-link {
    border: 0.25rem solid white;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    background-color: transparent;
    color: white;
    font-size: 2rem;
    transition: 0.2s;
    cursor: pointer;
}

.club-link:hover {
    background-color: #444;
}

@media only screen and (max-width: 992px) {
    html {
        font-size: 12px;
    }
    p {
        margin: 1rem 5vw 2rem;
    }
}
