@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kaushan+Script&family=Passion+One:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kaushan+Script&family=Passion+One:wght@400;700;900&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;
    font-family: var(--fonte2);
    font-size: 10vw;
}

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(--fonte3);
    font-size: 3vw;
}

section.normal {
    background-repeat: repeat;
    background-color: wheat;
    color: black;
    box-shadow: inset 6px 6px 15px 0px rgba(41, 34, 2, 0.699);

}

section.normal > p{
    text-shadow: 2px 2px 5px rgba(110, 91, 5, 0.644);
}

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

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

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

section#img02 {
    background-image: url("../imagens/background002.jpg");
    background-size: cover;

}

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