body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
}

header {
  background-color: #000000;
  color: white;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  width: 75px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  position: relative;
  text-align: center;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  opacity: 0.9;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: larger;
  transform: translate(-50%, -50%);
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 5px;
}

.activities {
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.activities h2 {
  text-align: center;
  margin-bottom: 20px;
}

.activity-card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.activity-card {
  width: calc(33.33% - 20px);
  max-width: 300px;
  text-align: center;
}

.activity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.9;
}


.footer {
    background-color: #000000;
    color: #ECF0F1;
    padding: 20px 40px;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-logo img {
    max-width: 150px;
    height: auto;
  }
  .copyright{
    text-align: center;
  }
  .footer-contact{
    right: 0%;
    bottom: 100px;
  }
  

  @media (max-width: 800px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-logo {
      margin-bottom: 15px;
    }

    .activity-card {
      width: 100%;
  }
  }