@charset "UTF-8";
@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: 'Pasion One', cursive;
    --fonte3: 'Sriracha', cursive;
  }
  *{
    margin: 0px;
    padding: 0px;
  }
  html, body{
    min-height: 100vh;
    background-color: darkgray;
    font-family: var(--fonte1);
  }
  header{
    background-color: black;
    color: white;
    text-align: center;
    font-family: var(--fonte2);
  }
  header > h1{
    padding-top: 50px;
    font-variant: small-caps;
    font-size: 6vw;
  }
  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: 4vw;
    padding-left: 30px;
    font-family: var(--fonte3);
  }
  section > p{
    padding-bottom: 2em;
  }
  section.imagem{
    background-color: rgba(37, 37, 37, 0.397);
    color: white;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.582);
    background-attachment: fixed;
  }
  section.imagem >p{
    background-color: rgba(0, 0, 0, 0.486);
    display: inline-block;
    padding: 5px;
    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-position: right center;
    background-size: cover;
  }
  section.normal{
    background-color: white;
    color: black;
  }
  footer{
    background-color: black;
    color: white;
    padding: 10px;
    text-align: center;
  }