@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kaushan+Script&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Passion+One:wght@400;700;900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik+Dirt&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: 'Sriacha', cursive;
}

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

html, body{
    min-height: 100vh; /*tamanho mínimo da viewport será sempre 100% da altura da viewport*/
    font-family: var(--fonte1);
}

header {
    background-color: black;
    color: #fff;
    text-align: center;
}

header > h1 {
    padding-top: 50px;
    font-variant: small-caps;
    font-family: var(--fonte2);
    font-size: 10vw;
}

header > h1:hover {
    text-decoration: underline;
}

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.5vw;
}

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

section.normal > p {
    background-color: rgba(255, 235, 205, 0.256);
    display: inline-block;
    padding: 5px;
}

section.imagem {
    background-color: rgb(44, 44, 44);
    
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    box-shadow: inset 6px 6px 13px rgba(0, 0, 0, 0.352);
}

section.imagem {
    background-color: rgb(44, 44, 44);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

#pic1 {
    background-image: url(imagens/background001.jpg);
}
#pic2 {
background-image: url(imagens/background002.jpg);
}

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

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