* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #111;
  color: #eee;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  padding: 40px 20px;
}

h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #aaa;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 300px;
}

.links a {
  display: block;
  padding: 12px 20px;
  background-color: #222;
  color: #eee;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #333;
  font-size: 1rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.links a:hover {
  background-color: #333;
  transform: translateY(-2px);
}