@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');

html body {
    font-family: "Libre Baskerville";
    background-color: #fffcf2;
    color: #252422;
    display: flex;
    justify-content: center;
}

div {
    max-width: 650px;
    margin: 0px 20px;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

p {
    text-align: justify;
    font-size: 16px;
}

hr {
    opacity: 0.3;
    margin: 1.5rem 0;
}

a {
    color: #eb5e28;
    text-decoration: none;
}

section a {
    margin: 0px 5px;
}

span {
    color: #eb5e28;
}

@media (max-width: 450px) {
    p {
        font-size: 12px;
    }

    a {
        font-size: 12px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 16px;
    }
}