body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  padding: 20px;
}

.logo {
  width: 180px;
  margin-bottom: 30px;
}

.title {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  margin: 10px 0;
  font-weight: 700;
}

.subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 50px;
}

.button {
  background-color: #9e1b1f;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 10px;
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #b3262a;
}
