/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

/* Container to center everything */
.container {
  max-width: 800px;
  padding: 20px;
}

/* Header Styles */
header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
}

/* Footer Styles */
footer {
  font-size: 1rem;
  margin-top: 50px;
}

footer a {
  color: #1e90ff; /* Nice blue for links */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
