@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Passion+One:wght@400;700;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sriracha&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap');


:root{
    --fonte1: Verdana, Geneva, Tahoma, sans-serif;
    --fonte2: 'Passion One', cursive;
    --fonte3: 'Sriracha', cursive;

}

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

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

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

header > h1 {
    padding-top: 50px;
    font-variant: small-caps;
    font-family: var(--fonte2);
    font-size: 10vw;
}

header > p {
    padding-bottom: 50px;
}

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

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

section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    line-height: 2em;
    padding-left: 30px;
    font-family: var(--fonte3);
    font-size: 3.5vw;
}

section > p {
    padding-bottom: 2em;


}

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

section.imagem {
    background-color: rgb(65, 60, 60);
    color: white;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.381);
    background-attachment: fixed;
}

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

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

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

}

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