@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Passion+One:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&display=swap');


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

}

root{
    --fonte-destaque: "Passion One", sans-serif;
    --fonte-padrao: "Verdana", Geneva, Tahoma, sans-serif;
    --fonte-texto: "Sriracha", cursive;

}



html, body {
    min-height: 100vh;
    background-color: dark;
    font-family: var(--fonte-padrao);
}

main{
    margin-left: 38vw;
    margin-right: 38vw;
}

header {
    background-color: black;
    color: white;
    text-align: center;
    min-height: 200px;
}

header>h1 {
    padding-top: 50px;
    font-size: 4vw;
    font-family: var(--fonte-destaque);
    font-variant: small-caps;
    
    /* Coloca em letras maisculas, sendo as primeiras letras maiusculas */
    /* text-transform: uppercase; */
    /* Coloca em letras maisculas */
}

header>p {
    padding-bottom: 50px;
    font-size: 1.2em;
    font-family: var(--fonte-subtitulo);
}

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

header a:hover, footer a:hover {
    text-decoration: underline;
}

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

section
{
    /* Efeito Parallax */
    /* Altera o padding conforme for diminuindo e aumentando a viewport */
    padding-top: 10vh;
    padding-bottom: 10vh;
    line-height: 2em;
    padding-left: 30px;
    font-family: var(--fonte-texto);
    font-size: 2vw;

}

section > p{
    padding-bottom: 2em;
}
section.normal {
    background-color: white;
    color: black;
}


section.imagem {
    background-color: rgb(51, 51, 51);   
    color: white;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.281);
    background-size: cover;
    background-attachment: fixed;
    margin-left: -38vw;
    margin-right: -38vw;
    
}

section.imagem > p {
    display: inline-block;
    padding: 8px;
    margin-left: 38vw;
    background-color: rgba(0, 0, 0, 0.507);
    text-shadow: 1px 1px 0px black;
    
}

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

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

/* div#titulo {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%);
}

div#subtitulo {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%);
}

h1 {
    color: white;
    font-family: 'Passion one', sans-serif;
    font-weight: bold;
    font-size: 7em;
    font-style: normal;

}

h3 {
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

main {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;


}

main>div>p {
    padding-left: 20px;
    font-family: 'Sriracha', cursive;
    font-size: 3em;

}

div#paragrafo2 {
    background: black url(img/background001.jpg) center center /cover no-repeat fixed;
}

div#paragrafo2>p {
    background-color: black;
}

footer {
    background-color: black;
    color: white;
    margin: 0px;
} */