   /* סגנון לכפתור מה חדש */
   #whatsNewButton {
    position: fixed;
    top: 20px;
    left: 0px;
    background-color: #ffffff;
    border: none;
    width: 200px;
    color: black;
    border-radius: 0 8px 8px 0; /* רדיוס רק לשתי הפינות הימניות */
    padding: 16px ;
    text-align: center;
    font-size: 16px;
    transition: 0.3s;
    margin-left: 3px;
    margin-bottom: 60px;
    cursor: pointer;
  }
  
/* סגנון לכפתור מה חדש בעת הרחקה עם העכבר */
#whatsNewButton:hover {
background-color: #0056b3;
cursor: pointer;
}
.hidden-menu {
position: fixed;
top: 0;
left: -300px; /* תציב כאן את הרוחב של התפריט בצבעה */
width: 300px; /* תציב כאן את הרוחב של התפריט בצבעה */
height: 100%;
background-image: url("https://xn--4dbddh0d3b.xn--4dbrk0ce/weddings/popup.png");
background-color: white;
transition: left 0.3s ease; /* אנימציה שמוגדרת על התנועה של התפריט */
}
/*גלילה*/
.hidden-menu {
  overflow-y: scroll;
  }

.hidden-menu.show {
left: 0; /* בעת לחיצה על הכפתור, עם ההוספה של הקלאס "show", התפריט יופיע */
}
  
/* סגנון לכפתור סגירה */
.close-button {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 50px;
    background: none;
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    outline: none;
    margin-bottom: 20px;
  }
/* סגנון לכרטיסיה */
.card {
  background-color: #f0f0f0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  padding: 16px;
}

/* סגנון לכותרת */
.card h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

/* סגנון לתאריך */
.card p:nth-child(2) {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

/* סגנון לתיאור */
.card p:nth-child(3) {
  font-size: 16px;
  margin-bottom: 8px;
}

/* סגנון לתיאור משני */
.card p:nth-child(4) {
  color: #888;
  font-size: 14px;
}