@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(#333333, #6432a8) no-repeat;
    color: #000000;
    font-size: 100%;
    font-family: "Roboto Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-variation-settings:
        "slnt" 0,
        "wdth" 100,
        "GRAD" 0,
        "XOPQ" 96,
        "XTRA" 468,
        "YOPQ" 79,
        "YTAS" 750,
        "YTDE" -203,
        "YTFI" 738,
        "YTLC" 514,
        "YTUC" 712;    
}

h1 {
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    font-weight: 300;
    text-transform: uppercase;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.box {
    width: 17.5rem;
    margin: 1rem auto;
    padding: 1.25rem;
    background-color: #ffffff;
    border-radius: 0.625rem;
    color: #111111;
    font-size: 0.75rem;
    line-height: 1rem;
}

@media (min-width: 50rem) {
    .title {
        font-size: 2rem;
    }
    .box {
        width: 40rem;
        margin: 5rem auto;
        font-size: 1rem;
        line-height: 1.5rem;
    }
}