* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: "Georgia", serif;
}

body {
  background: url('background2.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  color: #fefefe;
  text-align: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.3);
  height: 10rem;
  margin-top: 4rem;
  padding: 2rem 3rem;
  border-radius: 1rem;
  animation: fadeIn 2s ease-out;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

