/* General reset and layout */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #fef1f1;
  font-family: Arial, sans-serif;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

/* Logo styling */
#logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

/* Title */
h1 {
  margin: 0;
  font-size: 2.5rem;
}

/* Subtitle with extra spacing */
.subtitle {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #666;
}

/* Footer styling */
footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #888;
}
