@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&display=swap');

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

:root {
  --font1:  Verdana, Geneva, Tahoma, sans-serif;
  --font2: 'Passion One', cursive;
  --font3: "Edu NSW ACT Cursive", cursive;
}

* {
  margin: 0;
  padding: 0;

  
}

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

header {
  background-color: black;
  color: white;
  text-align: center;
  

}

header > h1 {
  padding-top: 50px;
  font-variant: small-caps;
  font-family: var(--font2);
  font-size: 10vh;

}

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: 2em;
  padding-left: 30px;
  font-family: var(--font3);
  font-size: 3.5vh;
  
}

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

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



section.imagem {
  background-color: #303030;
  color: white;
  box-shadow: inset 6px 1px 13px 0 #0000006e;
  background-attachment: fixed;
}



section.imagem > p {
  display: inline-block;
  padding: 5px;
  background-color: #00000065;
  text-shadow: 1px 1px 0px #00000069;
}

section#imagem1 {
  background-image: url(imagens/background001.jpg);
  background-position: right center;
  background-size: cover;
}
section#imagem2 {
  background-image: url(imagens/background002.jpg);
  background-size: cover;

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