body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

section {
  padding: 20px;
}

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


@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
}