@import url('https://fonts.googleapis.com/css2?family=Lato');

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

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Lato", sans-serif;
    background-color: beige;
    min-height: 100vh;
    width: 100%;
    padding: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.title {
    font-size: 30px;
    text-align: center;
    margin: 15px;
    margin-top: -20px;
}

p, li {
    text-align: justify;
    line-height: 1.5;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    body {
        font-size: 18px;
    }
    li {
        line-height: 2;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }

    li {
        line-height: 2;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    li {
        font-size: 13px;
        line-height: 2;
        text-align: center;
    }

}
