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

:root {
  --f-titulo: "Rammetto One";
  --f-cordel: DynaPuff;
}

* {
  margin: 0px;
  padding: 0px;
}

html,
body {
  min-height: 100vh;
  background-color: lightgray;
  color: black;
}

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

h1 {
  padding-top: 50px;
  font-family: var(--f-titulo);
  font-size: 8vw;
  font-variant: small-caps;
}

header p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1em;
  padding-bottom: 30px;
}

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

footer p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1em;
}

header a,
footer a {
  color: white;
  font-weight: bolder;
  text-decoration: none;
}
header a:hover,
footer a:hover {
  text-decoration: underline;
}

main p {
  font-family: var(--f-cordel);
  font-size: 3vw;
  line-height: 2em;
  margin-bottom: 2em;
}

section {
  padding: 10vh 0px 10vh 30px;
}

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

section.imagem {
  background-color: rgb(51, 51, 51);
  color: white;
  box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.5);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

section.imagem > p {
  display: inline-block;
  padding: 5px;
  text-shadow: 1px 1px 0px black;
  background-color: rgba(0, 0, 0, 0.521);
}

section.imagem#img1 {
  background-image: url(imagens/background001.jpg);
}

section.imagem#img2 {
  background-image: url(imagens/background002.jpg);
}
