@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}


@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&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;
}

html, body {
    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);
    
}

header p {
    padding-bottom: 50px;
}

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

a:hover {
    text-decoration: underline;
}

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

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

section.imagem {
    box-shadow: 6px 6px 13px 0px rgba(0, 0, 0, 0.466) inset;

    background-color: rgb(53, 51, 51);
    background-position: right center;
    background-size: cover;
    background-attachment: fixed;

    color: white;
    text-shadow: 1px 1px 0px rgb(0, 0, 0);
}

section.imagem p {
    display: inline-block;
    padding: 5px;

    background-color: rgba(0, 0, 0, 0.651);
}

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

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

section p {
    padding-bottom: 2em;
}

footer {
    padding: 10px;

    background-color: black;

    color: white;
    text-align: center;
    font-size: 0.8em;
}