body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.logo {
  width: 280px;
  height: 100%;
}

.logo-text .europe {
  font-weight: bold;
}

.logo-text .gold {
  color: gold;
  font-weight: bold;
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
}

.nav a:hover {
  color: gold;
}

.main {
  text-align: center;
  padding: 4rem 1rem;
}

.main h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.button {
  background: linear-gradient(to right, #9E4A03, #FFD700);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
  font-size: 1.2rem;
}

.button:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .main h1 {
    font-size: 2.5rem;
  }
  .buttons {
    flex-direction: row;
  }
}
