@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    font-size: 1em;
}
@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&family=Sriracha&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap');

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


html body {
    min-height: 100vh;
    background-color: darkgray;
    font-family:var(--fonte1) ;
}

header {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
}
header h1 {
    font-family: var(--fonte2);
    font-variant: small-caps;
    font-size: 10vw;
    padding-top: 50px;
    
}
header p {
    font-size: 1.2em;
    padding-bottom: 50px;
}

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

}
section p {
    padding-bottom: 2em;
}

section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    padding-left: 30px;
    font-family: var(--fonte3);
    font-size: 3.5vw;
    line-height: 1.8em;
}

section.normal {
    background-color: white;
    color: black;
}
section.imagem {
    
    background-color: rgba(53, 52, 52, 0.959);
    color: white;
    box-shadow: inset 0 0 10px  black;
}

section.imagem p {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.493);
    padding: 10px;
    text-shadow: 2px 1px 0px black;
    
}   
 
 section#img01 {
    background-image: url(../imagens/background001.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
 section#img02 {
    background-image: url(../imagens/background002.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}


footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
    
}
footer p {
    
    color: rgba(157, 163, 165, 0.822);
} 
  