/* style.css */

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #e6f2ff; /* Light Blue Background */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

header {
  background-color: #2980b9; /* Darker Blue Header */
  color: #fff;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 5em;
  margin: 0;
  letter-spacing: 0.1em;
}

main {
  padding: 20px;
  text-align: center;
}

p {
  font-size: 1.2em;
  color: #34495e; /* Dark Gray/Blue Text */
}
