/* General Reset */
body {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(to bottom right, #1e3a8a, #3b82f6);
  color: #ffffff;
  text-align: center;
}

/* Container Styling */
.container {
  max-width: 600px;
  padding: 20px;
}

/* Content Box Styling */
.content-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

/* Heading Styling */
h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

/* Paragraph Styling */
p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Footer Styling */
footer {
  font-size: 0.9rem;
  margin-top: 20px;
  opacity: 0.8;
}
