@charset "UTF-8";

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

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

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

* {
    margin: 0px;
    padding: 0px;
    font-size: 1em;
}

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; /*Texto todo em maiúsculo mas as primeiras letras maiores.*/
    font-family: var(--fonte2);
    font-weight: 100;
    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.6vw;
}

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

section.imagem {
    background-color: rgb(51, 51, 51);
    color: white;
    background-size: cover;
    background-position: right center;
    background-attachment: fixed; /*Deixa o fundo fixo fazendo um efeito paralax*/
    box-shadow: inset 5px 5px 12px rgba(0, 0, 0, 0.404);
}

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

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

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

footer {
    background-color: black;
    color: white;
    text-align: center;
    font-size: .8em;
    padding: 10px;
}
