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;
  left: 0px;
}

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;
  font-family: 'Times New Roman', Georgia;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 5px;
}

.attractions {
  position: relative;
  overflow: hidden;
  padding: 5%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.attractions h2 {
  margin-bottom: 20px;
}

.attraction-card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

.attraction-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;
}