
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #111;
  color: #f5f5f5;
  display: flex;
  align-items: centre;
  justify-content: centre;
  height: 100vh;
}

.container {
  text-align: centre;
  max-width: 600px;
  padding: 20px;
}


a {
  color: #66b3ff; /* light blue */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 30px;
}

.content {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

footer {
  font-size: 0.8rem;
  color: #666;
}
