@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Passion+One:wght@400;700;900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Passion+One:wght@400;700;900&family=Sriracha&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

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

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

body{
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: white;
}

a:hover{
    text-decoration: underline;
}

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

    text-align: center;

    padding-top: 50px;
    padding-bottom: 50px;
}

header h1{
    font-family: var(--fonte2);
    font-size: 10vw;
    font-variant: small-caps;
}

header p{
    font-family: var(--fonte1);
    font-size: 2vw;
    text-decoration: none;
}

section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    padding-left: 30px;
    
    line-height: 2em;

    font-family: var(--fonte3);
    font-size: 3.5vw;
}

section p {
    padding-bottom: 2em;
}

section.imagem {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.473)
}

section.imagem > p {
    display: inline-block;

    background-color: rgba(0, 0, 0, 0.637);
    color: white;

    text-shadow: 1px 1px 0px black;

    padding: 5px;
}

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

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

footer {
    color: white;
    background-color: black;
 
}

footer p {
    text-align: center;
    font-family: var(--fonte1); 
}























