html {
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif
}

.container {
    width: 100%;
    height: 100%;
}

main {
    padding-bottom: 10rem;
}

.container, main {
    display: grid;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

main > h1 {
    margin-bottom: 0.5rem;
}

ul {
    padding: 0;
    list-style-type: none;
}

li {
    justify-items: center;
    font-size: 1.25rem;
}

@media screen and (min-width: 480px) {
    li {
        display: inline;
    }

    li+li::before {
        content: "\2022";
        display: inline-block;
        width: 0.6em;
    }
}

@media screen and (max-width: 480px) {
    li {
        display: block;
        padding: 0.5rem;
    }

    ul {
        text-align: center;
    }
}
