body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 0.3em;
}

.tagline {
  font-size: 1.1em;
  margin-bottom: 2em;
  color: #ccc;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px auto;
  padding: 12px 24px;
  background-color: #444;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  width: 250px;
  font-size: 1.1em;
  transition: background-color 0.2s ease;
}

.logo {
  width: 150px;
  margin: 30px auto;
  display: block;
}

.links a:hover {
  background-color: #666;
}

.links i {
  font-size: 1.3em;
}
