@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=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Cedarville+Cursive&display=swap");

:root {
  --fonte1: Verdana, Geneva, Tahoma, sans-serif;
  --fonte2: "Passion One", cursive;
  --fonte3: "Cedarville Cursive", cursive;
  --fonte4: "Google Sans", 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;
}

header h1 {
  padding-top: 50px;
  font-variant: small-caps;
  font-size: 10vw;
  font-family: var(--fonte2);
}

header p {
  padding-bottom: 50px;
  font-size: 3vw;
}

a {
  color: white;
  text-decoration: none;
  font-weight: bolder;
}

a:hover {
  text-decoration: underline;
}

p {
  padding-left: 20px;
}

section {
  padding-top: 10%;
  padding-bottom: 10%;
  line-height: 2em;
  padding-left: 30px;
  font-family: var(--fonte3);
  font-weight: bold;
  font-size: 4.5vw;
}

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

section.image {
  background-color: purple;
  color: white;
  box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.575);
  background-attachment: fixed;
}

section.image p {
  display: inline-block;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.651);
  text-shadow: 2px 2px 0px black;
}

section p {
  padding-bottom: 2em;
}

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;
}

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