:root {
    font-size: 100%;
    /* zet je dit op 62.5%, dan is elke rem 10px waard, anders 16px */
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* Main CSS */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
    background-color: #292929;
    font-family: 'Open Sans', sans-serif;
    color: white;
}

main {
    width: 80vw;
    margin: 3rem auto;
    text-align: center;
}

h1 {
    font-size: 36px;
    line-height: 96px;
    letter-spacing: 0;
    font-weight: 800;
    margin: 0.67em 0;
}

ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

li {
    display: inline-block;
    height: 48px;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
    width: 100%;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: .1px;
    border-radius: 8px;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}


.icon {
    padding: 0 8px 3.5px 0;
    vertical-align: middle;
    width: 30px;
    height: 30px;
}

.avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    vertical-align: middle;
}

.discord {
    background-color: #5865f2;
}

.github {
    background-color: black;
}

.namemc {
    background-color: #31E981;
}

.steam {
    background-color: #171a21;
}


@media (min-width: 1000px) {
    ul {
        grid-template-columns: 1fr 1fr;
    }
}
