body {
  font-family: Arial, sans-serif;
  background-color: #060b1f;
  margin: 0;
  padding: 0;
}

.navlinks {
  color: white;
}

.navlinks > a {
  color: white;
  text-decoration: none;
  margin: 16px;
}

.navigation {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header {
  color: white;
  text-align: center;
}

/* Main content styles */
main {
  padding: 2rem;
}

/* Booking cards section */
.booking-cards {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: auto;
  margin-top: 50px;
}

/* Individual card styles */
.card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card > img {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 1rem;
}

.card-content h2 {
  margin: 0 0 0.5rem 0;
}

.card-content > p {
  margin: 8px 0;
  font-size: 18px;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #4CAF50;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card-content > button {
  margin: 8px 0;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  color: white;
  background-color: #850885;
  cursor: pointer;
  border-radius: 9999px;
}

.card-content > button:hover {
  background-color: #a52;
}

footer {
  padding: 10px;
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}

.footer-1 > h1 {
  font-weight: bolder;
  font-size: 2rem;
  font-family: 'Times New Roman', Times, serif;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
  .navigation {
    width: 90%;
  }

  .booking-cards {
    width: 90%;
  }
}

@media (max-width: 992px) {
  .navlinks {
    justify-content: space-around;
  }

  .navlinks > a {
    margin: 12px;
  }
}

@media (max-width: 768px) {
  .navlinks {
    flex-direction: column;
    align-items: center;
  }

  .card-content > p {
    font-size: 16px;
  }

  .price {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .navlinks > a {
    margin: 8px;
  }

  .card-content > button {
    padding: 10px 20px;
    font-size: 14px;
  }
}