@charset "UTF-8";

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

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


:root {
    --fonte1: Verdana, Geneva, Tahoma, sans-serif; /* fonte padrão */
    --fonte2: 'Passion One', cursive; /* fonte para títulos */
    --fonte3: 'Sriracha', cursive;  /* fonte para o conteúdo */
}

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

html, body {
    min-height: 100vh; /* altura mínima do corpo do meu site  */ /* pode usar 100% tbm */
    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; /* formata o texto em caixa alta */
    font-family: var(--fonte2);
    font-weight: normal;
    font-size: 10vw; /* recurso para deixar a fonte do h1 responsivo */
}

header > p {
    padding-bottom: 50px;
}

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

a:hover {
    text-decoration: underline;
}

section {
    padding-top: 10vh; /* vh or % */
    padding-bottom: 10vh;
    line-height: 2em;
    padding-left: 30px;
    font-family: var(--fonte3);
    font-size: 3vw;
}

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

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

section.imagem {
    background-color: rgb(49, 47, 47);
    color: white;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.459); /* tipo inset: sombra interna */
    background-size: cover;
    background-attachment: fixed; /* deixando a imagem com efeito parallax */
}

section.imagem > p {
    display: inline-block; /* ou width: 400px */
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.507);
    text-shadow: 1px 2px 0px black;
    
}

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

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

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

