@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&family=Sriracha&display=swap');
*{
    margin: 0px;
    padding: 0px;
    font-size: 1em;
}
:root {
    --fonte1: Verdana, Tahoma, sans-serif;
    --fonte2: 'Passion one', 'cursive';
    --fonte3: 'Sriracha', 'cursive';

}

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

header{
    min-height: 10vw;
    padding-top: 10px;
    padding-bottom: 30px;
    font-family: var(--fonte2);
    text-align: center;
    background-color: black;
    color: white;    
}
header h1 {
    padding-top: 50px;
    font-size: 10vw;
    font-variant: small-caps;
}
header p {
    padding-bottom: 50px;
}
header a, footer a{
    text-decoration: none;
    color: white;
    font-weight: bolder;
}
header a:hover , footer a:hover{
    text-decoration: underline;
    color: darkgray;
}

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

}
section.normal {
    background-color: white;
    color: black;
    padding-left: 30px;
    
    
}

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

section.imagem {
    background-color: darkgray;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.466);
    background-size: cover;
    background-attachment: fixed;
}
section.imagem > p {
    display: inline-block;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.568);
    color: white;
    text-shadow: 1.2px 1.2px 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;
    text-align: center;
    padding: 10px;

}
