@charset "UTF-8"; 

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

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

:root {
  --fonte1: Verdana, Geneva, Tahoma, sans-serif;
  --fonte2: 'Caveat', cursive;
  --fonte3: 'Sriracha', cursive;
}


* {
  margin: 0;
  padding: 0;
}

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

header {
  background-color: rgb(17, 16, 16);
  color: white;
  text-align: center;
}

header > h1 {
  padding-top: 20px; 
  font-variant: small-caps; /* deixar letras maiusculas com a primeira maior que as demais */
  font-family: var(--fonte3);
  font-size: 8vw; /*fonte se adapta a largura da tela*/
}

header > img {
  width: 100px;
  opacity: 90%;
  padding-top: 5px;

  }

header > p {
  padding-bottom: 10px;
 
}

header a, footer a {
  color: white;
  text-decoration: none; /*tirar o sublinhado do link*/
  font-weight: bolder; /* fonte em negrito*/
}

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

section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  line-height: 2em; /*espaço entre linhas*/
  padding-left: 30px; /* descolar o texto do lado esquerdo*/
  font-family: var(--fonte2);
  font-size: 3.5vw;
}

section > p {
  padding-bottom: 1.5em;
}

section.normal {
  background-color: white;
  color: rgba(0, 0, 0, 0.651);
  
}

section.imagem {
  background-color: rgba(0, 0, 0, 0.349);
  color: white;
  box-shadow: inset 6px 6px 13px 0px black; /*sombra na imagem*/
  background-attachment: fixed ; /*fixar a imagem*/

}

section#img01 {
  background-image: url('../imagens/background001.jpg');
  background-position:right center;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.575); /*sombra da fonte*/
  background-size: cover; /*ajustar imagem*/ 

  }

section#img02 {
  background-image: url('../imagens/background002.jpg');
  text-shadow: 2px 2px 0px black;
  background-position: center;
  background-size: cover;
}

section.imagem > p {
  background-color: rgba(0, 0, 0, 0.315);
  display: inline-block; /*texto se adapta ao tamanho da caixa*/
  padding: 5px;

}


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