@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{
    --fonte01: Verdana, Geneva, Tahoma, sans-serif;
    --fonte02: 'Passion One', cursive;
    --fonte03: 'Sriracha', cursive;
}

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


html, body{
    font-family: var(--fonte01);
    min-height: 100vh; /* vh = Viewport Height*/
    background-color: darkgrey;
}

header{
    background-color: black;
    color: white;
    text-align: center;
}
header > h1{
    font-family: var(--fonte02);
    padding-top: 50px;
    /*text-transform: uppercase; serve para aplicar o "CAPSLOCK" na fonte*/
    font-variant: small-caps;
    font-size: 10vw; /* vw = Viewport Width*/
}
header > p{
    padding-bottom: 50px;
}

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

a:hover{
    text-decoration: underline;
}

section{
    font-family: var(--fonte03);
    padding-left: 30px;
    padding-top: 10vh;
    padding-bottom: 10vh;
    line-height: 2em; /*espaçamento da altura da linha*/
    font-size: 3.5vw;
}
section > p{
    padding-bottom: 2em;
}
section.normal{ 
    background-color: white;
    color: black;
}
section.imagem{
    background-color: rgb(8, 8, 8);
    color: white;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.76);
    background-size: cover;
    background-attachment: fixed;
}
section.imagem > p{
    display: inline-block;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.781);
    text-shadow: 2px 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;
}