/* Reset some default styles */
body, h1, p {
  margin: 0;
  padding: 0;
}

/* Set a full-screen background */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #667eea, #764ba2);
  font-family: 'Arial', sans-serif;
  color: #fff;
  text-align: center;
}

/* Container for the content */
.container {
  max-width: 600px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Heading style */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Paragraph style */
p {
  font-size: 1.2rem;
  opacity: 0.9;
}
