@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Playpen+Sans+Deva:wght@100..800&display=swap');

:root{
    --fonte-pd: "Funnel Sans", sans-serif;
    --fonte-txt: "Playpen Sans Deva", cursive;
}

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

body{
    font-family: var(--fonte-pd);
    background-color: rgba(232, 213, 178, 0.268);
}

header{
    background-color: black;
    height: 200px;
    margin: auto;
    color: white;
    text-align: center;
    padding-top: 32px;
}

header h1{
    font-size: 60px;
    margin: auto;
}

header blockquote, cite{
    font-size: 22px;
}

main{
    background-color: white;
    margin: auto;
    min-width: 300px;
    max-width: 840px;
    box-shadow: 0px 0px 2px 2px black;
}

section{
    font: normal 400 26px var(--fonte-txt);
    line-height: 2em;
    padding: 24px 0px 24px 30px;
}

section.bkg{
    background: url(images/img2.jpg) no-repeat center left fixed;
    background-size: cover;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.300);
}

section.bkg > p{
    background-color: rgba(0, 0, 0, 0.160);
    color:white;
    display: inline-block;
    border-radius: 8px;
    padding: 4px;
    text-shadow: 1px 1px 0px black;
}

cite{
    font-size: 22px;
}

footer{
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    header{
        height: 100px;
        padding: 15px 0px 15px 0px;
    }

    header h1{
        font-size: 30px;
    }

    header blockquote, cite{
        font-size: 18px;
    }

    main{
        min-width: 300px;
        max-width: 670px;
    }

    section{
        font-size: 18px;
        padding: 20px 0px 20px 20px;
    }

    section.bkg{
        background-attachment: scroll;
    }

    footer{
        font-size: 14px;
    }
}   