@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@600&family=Roboto:wght@500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body{
    display: block;
    margin: 3rem auto;
    justify-content: center;
    text-align: center;
}

ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

li {
    list-style-type: none;
    padding: 3rem 0;
    margin: 0 2rem;
    border-bottom: dashed gray 1px;
    font-size: 1.2rem;
    display: block;
}

img {
    width: 250px;
    margin-top: 2rem;
}

@media screen and (min-width: 767px) {
    body {
        font-size: 2rem;
    }
}
