body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background: url('background.webp.webp') no-repeat center center fixed;
  background-size: cover;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px 60px;
  background: rgba(0, 0, 0, 0.6);
}

.logo {
  width: 220px;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s ease;
}

.btn.white {
  background: #fff;
  color: #d72b24;
}

.btn.outlined {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn:hover {
  transform: scale(1.05);
}

main {
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.7);
}

section {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

h1, h2 {
  color: #ffd700;
  margin-bottom: 20px;
}

footer {
  background: rgba(0, 0, 0, 0.85);
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

.credit {
  margin-top: 5px;
  font-style: italic;
}
