html {
    font-size: 62.5%;
}

body {
    font-family: "Quicksand", sans-serif;
    font-size: 2rem;
    color: rgb(242, 242, 242);
    background-color: rgb(13, 13, 13);
}

.wrapper-main {
    width: 1000px;
    margin: 0 auto;
}

/* MAIN */

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-top: 15vh;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 2vh;
}

ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5vh;
}

li {
    line-height: 2;
}

p {
    text-align: center;
    margin-top: 5vh;
    line-height: 2.2;
}

a {
    color: rgb(0, 153, 102);
    padding: 0 1rem;
    border-left: 2px solid rgb(13, 13, 13);
    border-right: 2px solid rgb(13, 13, 13);
    transition: all 330ms ease-in-out;
}

a:hover {
    /*color: rgb(205, 205, 205);*/
    color: rgb(0, 102, 153);
    border-left: 2px solid rgb(205, 205, 205);
    border-right: 2px solid rgb(205, 205, 205);
}

/*  Screen sizes */

@media screen and (max-width: 999px) {
    .wrapper-main {
        width: 100vw;
    }
}

@media screen and (max-width: 600px) {
    body {
        font-size: 1.6rem;
    }
    
    h1 {
        font-size: 2.0rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    li {
        line-height: 2;
    }
}