/* Apply styles to the entire page */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  display: flex;
}

/* Main container to center the content */
.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: url('background.jpg');
  backdrop-filter: blur(8px); /* Blurring effect */
}

/* Card container */
.card {
  background: rgba(255, 255, 255, 0.8); /* Light semi-transparent background */
  padding: 30px;
  border-radius: 15px;
  text-align:left;
  max-width: 500px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

p {
  font-size: 18px;
}
