body {
  background-color: #000; /* Black background color */
  color: #fff; /* White text color */
  font-family: Arial, sans-serif; /* Fallback font */
  margin: 0; /* Remove default margin */
  padding: 20px; /* Add some padding */
  text-align: center; /* Center all content in the body */
}

h1 {
  font-size: 33vh; /* Set font size to 33% of viewport height */
  margin-bottom: 10px; /* Add space after heading */
  font-family: 'Lilita One', cursive; /* Use Lilita One font */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  h1 {
    font-size: 48pt; /* Adjust font size for smaller screens */
  }
}
