* {
    margin: 0;
    padding: 0;
}

:root {
    font-family: "Alice", serif;
    line-height: 150%;
    color: #573A37;
}

body {
    background-image: url(../images/bg-image.jpg);
    background-repeat: no-repeat; /* retirar repetição */
    background-size: cover; /* cobre toda a área visivel */
}

#page {
    box-sizing: border-box;
    width: 800px;
    padding: 24px;
    background-color: #F0E8C2;
    border-radius: 24px;
    margin: 48px auto 28px;
}

img {
    border-radius: 16px;
}

main {
    padding: 24px;
}

section + section {
    margin-top: 24px;
}

#about p + p {
    margin-top: 12px;
}

h1 {
    line-height: 140%;
    font-size: 40px;
    margin-bottom: 4px;
}

h2 {
    font-size: 24px;
}

h1, h2 {
    color: #291B1A;
    margin-bottom: 4px;
    line-height: 150%;
}

ul {
    padding-left: 24px;
}

footer {
    color: #F0E8C2;
    text-align: center;
    padding-bottom: 48px;
}

footer img {
    vertical-align: middle;
}

footer a {
    text-decoration: none;
    color: #F0E8C2;
}

/* tentando deixar responsivo no tablet, seguindo o que apliquei no celular */
@media (max-width: 900px) {
    #page {
        width: 90%;
        margin: 48px auto;
    }

    img {
        width: 100%;
        height: auto;
    }

    footer img {
        width: auto;
    }
}

/* tentando deixar responsivo no celular, mas ainda não estudei responsividade, então posso ter feito errado */
@media(max-width: 450px) {
    #page {
        width: 90%;
        margin: 24px auto;
        padding: 16px;
    }

    img {
        width: 100%;
        height: auto;
    }

    h1 {
        font-size: 32px;
    }

    footer img {
        width: 1rem;
    }
}