body {
  font-family: 'Poppins', sans-serif;
  background-color: #707070;
}

nav#navbar {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  background-color: #f0f0f0;
  padding: 10px;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  border-radius: 5px;
}

nav#navbar a {
  text-decoration: none;
  color: #333; /* Dark gray text */
  padding: 8px 12px; /* Padding around link text */
  border-radius: 5px; /* Rounded corners */
}

nav#navbar a:hover {
  background-color: #ddd; /* Light gray background on hover */
}

#cards {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: 10px; /* Space between cards */
  padding: 10px;
  flex-grow: 0.5; /* Cards take up remaining space */
}

.card {
  display: inline-block;
  background-color: #5c5c5c;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.card:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  margin-bottom: 10px;
}

.card a {
  text-decoration: none;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.Card-Text5 {
width: auto;
border-radius: 5px;
background-color: #05fb00;
font-family: 'Poppins', sans-serif;
}

.h1-color-center {
  color: #52d6fc;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  border-radius: 25px;
}

.notification-banner {
      background-color: red;
      color: white;
      text-align: center;
      padding: 15px;
      font-size: 1em;
      font-family: Arial, sans-serif;
      width: auto;
      border-radius: 3.5px;
    }

    .notifications-test {
      text-decoration: none;
      color: blue;
    }
    
    .notification-text {
      animation: blink 2s linear infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }
