@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Frank+Ruhl+Libre:wght@300..900&family=Luckiest+Guy&family=Micro+5&family=Pacifico&family=Permanent+Marker&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

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

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

:root{
    --fonte1: Verdana, Geneva, tahoma, sans-serif;
    --fonte2:  "Permanent Marker", cursive;
    --fonte3: "Caveat", cursive;
}

 * {
    margin: 0px;
    padding: 0px;
}
html, body{
    min-height: 100vh;
    background-color: rgb(255, 255, 255);
    font-family: var(--fonte1);
}
header{
    background-color: black;
    color: rgb(254, 254, 254);
    text-align: center;
}
header > h1{
    padding-top: 50px;
    font-variant: small-caps;
    font-family: var(--fonte2);
    font-size: 4em;
}
header > p{
    padding-bottom: 50px;
    font-family: var(--fonte2);
}
a{
    color: rgb(213, 0, 0);
    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: 3.5vw;
}


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

}
section.imagem{
    background-color: rgb(235, 105, 105) ;
    color: rgb(255, 255, 255);
     box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.699);
      background-attachment: fixed;
   
}

section#img001{
 background-image: url('imagens/img01.jpeg');
 background-position: right center;
 background-size: cover;
}

section#img002{

    background-image: url('imagens/img02.jpg');
    background-size: cover;
    background-position:center;
}
section.imagem > p{
    display: inline-block;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.644);
   
}

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