@charset "UTF-8";

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

:root {
    --fonte-padrao: Verdana, Geneva, Tahoma, sans-serif;
    --fonte-titulo: 'Passion One', cursive;
    --fonte-poema: 'Sriracha', cursive;
}

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

html, body {
    min-height: 100vh;  
    background-color: darkgray; 

    font-family: var(--fonte-padrao);
    font-size: 1.5vw;
}

header {
    background-color: black;    
    color: white;

    text-align: center;
}

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

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;

    line-height: 2em;
    padding-left: 30px;

    font-family: var(--fonte-poema);
    font-size: 3vw;
}

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

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

    /* background-attachment: fixed; */
}

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

section.imagem > p {
    display: inline-block;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.3);
}

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

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

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