body {
  margin: 0;
  font-family: sans-serif;
  background: linear-gradient(135deg, #1e1e2f, #3a3a5a);
  color: white;
  text-align: center;

  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}


.container {
  max-width: 400px;
  margin-top: 80px;
  padding: 20px;
}

.logo {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-bottom: 20px;
}


h1 {
  margin: 10px 0;
}

.description {
  color: #ccc;
  margin-bottom: 30px;
}

.links a {
  display: block;
  background: rgba(255,255,255,0.1);
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

.links a:hover {
  background: rgba(255,255,255,0.3);
}
