@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Shadows+Into+Light&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: 1em Arial, sans-serif;
}
a {
  text-decoration: none;
  font-weight: bold;
  color: white;
}
a:hover {
  text-decoration: line-through;
}
/* Cabecalho */
header {
  background-color: black;
  color: white;
  text-align: center;
}
header > h1 {
  font: normal bold 15vw 'Dancing Script', sans-serif;
  padding: 20px 0 20px 0;
}
header p {
  font: normal normal 4vw Arial, sans-serif;
  padding: 20px 0 20px 0;
}
/* Conteudo Principal */
main pre {
  font: normal normal 4vw/1.7em Arial, sans-serif;
}
.wall1 {
  box-shadow: inset 0 5px 10px #00000056;
  font: italic bold 4vw/1.7em Arial, sans-serif;
  background: black url('Images/image1.jpg') center center/cover no-repeat fixed;
  color: white;
}
.wall1 p {
  font: italic bold 4vw/1.7em Arial, sans-serif;
  background-color: #00000056;
}
.wall2 {
  box-shadow: inset 0 5px 10px #00000056;
  background: black url('Images/image2.jpg') top center/cover no-repeat fixed;
  color: white;
}
.wall2 p {
  font: italic bold 4vw/1.7em Arial, sans-serif;
  background-color: #00000056;
}
/* Rodape */
footer {
  background-color: black;
  color: white;
  text-align: center;
  height: 10vh;
}
footer p {
  padding: 20px 0 0 0;
}