* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(145deg, #f7f1f1, #ffecec);
  font-family: "Segoe UI", sans-serif;
  color: #333;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 3rem;
  border-radius: 1rem;
  background: #ffffffcc;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #f75d5d;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.3s ease;
}

.button:hover {
  background: #34b4eb;
}
body {
    background-image: url("/assets/hero_background.webp");
    background-position: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}
