@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

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

body {
  background-color: #121212;
  color: #eee;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
  text-align: center;
}

main {
  max-width: 400px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: #bbb;
}

.buttons a {
  display: inline-block;
  margin: 0 0.5rem 0.5rem 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #1f2937;
  color: #eee;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.buttons a:hover {
  background-color: #2563eb;
  color: #fff;
}
