body, html {
  margin: 0;
  padding: 0;
  font-family: "Georgia", serif;
  color: #fff;
  background-color: #000;
}
section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section::before {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background-color: rgba(0,0,0,0.5);
  z-index:0;
}
section.visible {
  opacity: 1;
  transform: translateY(0);
}
.content {
  position: relative;
  max-width: 600px;
  text-align: center;
  z-index:1;
  padding: 1rem;
}
h1, h2 {
  font-weight: normal;
  margin-bottom: 0.5rem;
}
p {
  font-size: 1.1rem;
  line-height: 1.5;
}
.survey-link {
  color: #fff;
  text-decoration: underline;
}
.transition-divider {
  height: 4rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0));
}