#hero {
  background-image: url("../images/background/ocean.jpg");
  background-position: center;
  background-size: cover;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero-content {
  width: 900px;
  max-width: 90%;
  background-color: rgba(51, 47, 47, 0.8);
  box-shadow: 2px 4px 8px rgb(68, 67, 67);
  border-radius: 10px;
  text-align: center;
  padding: 50px 0;
  color: white;
  text-transform: uppercase;
}
#hero-content h1 {
  font-family: "Raleway", sans-serif;
  font-size: 50px;
  margin: 0;
}
@media only screen and (max-width: 796px) {
  #hero-content h1 {
    font-size: 40px;
  }
}
#hero-content p {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 30px;
}
@media only screen and (max-width: 796px) {
  #hero-content p {
    font-size: 18px;
  }
}
#hero-content a {
  text-decoration: none;
  background-color: rgb(245, 243, 160);
  color: rgba(51, 47, 47, 0.8);
  padding: 15px 25px;
  border-radius: 0 20px 0 20px;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 2px 4px 8px rgb(68, 67, 67);
  transition: border-radius 0.5s;
}
#hero-content a:hover {
  border: 2px solid rgb(245, 243, 160);
  color: rgb(245, 243, 160);
  background-color: rgba(51, 47, 47, 0.8);
  border-radius: 20px 0 20px 0;
}

#highlights {
  background: linear-gradient(0deg, rgb(227, 255, 253), rgb(202, 243, 240));
  text-align: center;
  text-transform: uppercase;
  padding: 20px;
}
#highlights h2 {
  color: rgb(59, 65, 64);
  font-family: "Raleway", sans-serif;
  font-size: 40px;
  margin: 25px;
}

#destinations {
  display: flex;
  list-style: none;
  justify-content: space-evenly;
  padding: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.destination img {
  height: 200px;
  width: 265px;
  box-shadow: 2px 4px 8px rgb(68, 67, 67);
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.25s;
}
.destination img:hover {
  transform: scale(1.05);
}
.destination p {
  font-size: 24px;
  color: rgb(124, 123, 123);
}
.destination p strong {
  color: rgb(0, 160, 117);
}

/*# sourceMappingURL=index.css.map */
