@charset "UTF-8";

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

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

*{
    margin: 0;
    padding: 0;
}

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

html, body{
    min-height: 100vh;
    background-color: darkgray;
    font-family: var(--font1);
}


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

header h1{
    padding-top: 50px;
    /*text-transform: uppercase;
    deixa td com letras maiúculas*/
    font-variant: small-caps;
    font-family: var(--font2);
    font-size: 10vw;   
}

header p{
    padding-bottom: 50px;
    font-size: 1em;   
}

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

header a:hover, footer a:hover{
    text-decoration: underline;
}

header a:visited, footer a:visited{
    color: white;
}

section{
    padding: 10vh 0 10vh 30px;
    line-height: 2em;
    font-family: var(--font3);
    font-size: 3.5vw;
}

section > p{
    padding-bottom: 2em;
}

section.normal{
    background-color: white;
    color: black;
}

section.imagem{
    background-color: rgba(51, 51, 51, 0.531);
    color: white;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.473);
    background-size: cover;
    background-attachment: fixed;
}

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

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

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

footer{
    background-color: black;
    color: white;
    font-family: var(--font1);
    text-align: center;
    font-size: 1em;
    padding: 10px; 
}