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

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 400px;
  padding: 24px;
}

.logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.links a {
  text-decoration: none;
  color: #0066ff;
  font-weight: 500;
}

.links a:hover {
  text-decoration: underline;
}