/* GLOBAL */

html {
    font-size: 62.5%;
    font-family: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    width: 100vw;
    background-color: #f2e8f1;
}

:root {
    --black: #000000;
    --cool-grey: #888c9a;
    --white: #ffffff;
}

#container-content {
    width: 80%;
    top: 4.8rem;
    margin: auto;
}

#container-content > img {
    width: 100%;
    margin-bottom: -0.5rem;
}

#hero-img {
    width: 100%;
    /* max-width: 1920px; */
    margin-top: 4.8rem;
}

#container-description {
    height: auto;
    margin: auto;
    padding: 40rem 0rem;
    text-align: center;
}

p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 4rem;
    color: var(--cool-grey);
}

.subhead {
    color: #c3c3c3;
}

ul.project-list {
    margin-top: 3.2rem;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.4rem;
    color: var(--cool-grey);
}

/* MEDIA QUERIES */

@media screen and (max-width: 768px) {
    html {
        font-size: 50%;
    }

    #container-content {
        width: 100%;
    }

    #container-content > img {
        margin-bottom: -0.5rem;
    }

    #container-description {
        width: 90%;
        padding: 20rem 0rem;
    }

    p {
        line-height: 3.6rem;
    }
}
