@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=swap');

body {
  background: radial-gradient(circle at top left, #ffd6d6, #ffe2e2, #fff8e7);
  font-family: 'Quicksand', sans-serif;
  text-align: center;
  padding: 50px 20px;
  color: #444;
  animation: fadeIn 1.2s ease-out;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ff6f61;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: #666;
  line-height: 1.6;
}

button {
  padding: 14px 36px;
  margin-top: 24px;
  background: linear-gradient(45deg, #ff758c, #ff7eb3);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 140, 140, 0.4);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

button::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 200%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: 0.5s ease;
}

button:hover::before {
  left: 100%;
}

button:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 32px rgba(255, 105, 135, 0.5);
}
