/* General body styling */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #0f172a;
  color: #f8fafc;
  text-align: center;
}

/* Headings */
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Paragraphs */
p {
  font-size: 1.2rem;
  margin: 0.2rem 0;
}

/* Links */
a {
  color: #38bdf8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Links container */
.links {
  margin-top: 1rem;
}
