    @charset "UTF-8";

    @import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&family=Sriracha&display=swap');



    :root{
        --font1: Verdana, Geneva, Tahoma, sans-serif;
        --font2: 'Passion One', sans-serif;
        --font3: 'Sriracha', cursive;
    }

    *{
        margin: 0px;
        padding: 0px;
    }

    main{
        margin: auto;
        max-width: 1200px;
    }

    html, body{
        background-color: rgba(169, 169, 169, 0.499);
        font-family: var(--font1);
    }

    header{
        background-color: black;
        color: white;
        text-align: center;
    }

    header h1{
        padding-top: 5vw;
        font-variant: small-caps;
        font-family: var(--font2);
        font-size: 10vw;
    }

    header p{
        padding-bottom: 5vw;
    }

    section{
        padding: 3vw 3vw;
        line-height: 2em;
        font-family: var(--font3);
        font-size: 3.5vw;
    }

    section.normal{
        background-color: white;
    }

    section.imagem{
        background-color: rgb(51, 51, 51);
        color: white;
        background-position: right center;
        background-size:cover;
        box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.415);
        background-attachment: fixed;
    }

    section.imagem > p{
        display:inline-block;
        padding: 5px;
        background-color: rgba(0, 0, 0, 0.552);
        text-shadow: 1px 1px 0px black;
    }

    section#img01{
        background-image: url(imagens/background001.jpg);
        
    }

    section#img02{
        background-image: url(imagens/background002.jpg);
        
    }

    a{
        color: white;
        text-decoration: none;
        font-weight: bolder;
    }

    a:hover{
        text-decoration: underline;
    }

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

    @media(max-width:400px){
        section{
            font-size: 8vw;;
        }

        section.imagem > p{
            background-color: rgba(0, 0, 0, 0.101);
            text-shadow: 2px 2px black;
        }

        footer,header p,a{
            font-size: 8px;
        }
    }