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

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

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

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

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

header {
    padding-top: 50px;
    padding-bottom: 50px;
}

header h1 {
    font-family: var(--fonte2);
    padding: .5em;
    font-size: 4em;
    /* text-transform: uppercase; */
    font-variant: small-caps; /* small caps usa letras maiusculas mesmo para minusculas */

}

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

a:hover {
    text-decoration: underline;
}

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

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

section.imagem {
    background-position: right center;
    background-size: cover;
    box-shadow: inset 6px 6px 14px 0px rgba(0, 0, 0, 0.5);
    background-attachment: fixed;

}

section.imagem p {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
    border: 1px solid black;
    border-radius: 10px;
    padding: 5px;
}

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

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


p {
    white-space: pre-line;
}

footer {
    padding: 5px;
}
