/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: url("fest.jpg") no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay for contrast */
.overlay {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* Button container */
.button-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Button styles */
.btn {
  text-decoration: none;
  color: #1f2423;
  background: linear-gradient(135deg, #f7c6c7, #fceabb);
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* Responsive tweaks */
@media (min-width: 600px) {
  .button-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

