/* עיצוב כללי לגוף הדף */
body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #f0f4ff, #d9e4ff);
  text-align: center;
  padding: 40px;
  margin: 0;
  color: #333;
}

/* כותרת */
h1 {
  margin-bottom: 40px;
  font-size: 2.8rem;
  color: #005A9E;
}

/* עיצוב הכפתור */
button {
  background-color: #0078D4;
  color: white;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 120, 212, 0.4);
}

/* אפקט מעבר על הכפתור */
button:hover {
  background-color: #005A9E;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 90, 158, 0.6);
}

/* אנימציה של פיצוץ קל בהופעה */
button {
  animation: fadeInUp 0.8s ease forwards;
}

/* הגדרת האנימציה */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
