#main-photo {
  height: 800px;
  background-image: url("../Images/main.jpeg");
  background-position: center;
  background-size: cover;
}

#main-content {
  text-align: center;
  width: 900px;
  background-color: rgba(51, 47, 47, 0.8);
  margin: 0 auto;
  box-shadow: 2px 4px 8px rgb(68, 67, 67);
  border-radius: 8px;
  padding: 50px 0;
  position: relative;
  top: 250px;
}

#main-content h1 {
  color: whitesmoke;
  text-transform: uppercase;
  font-size: 50px;
  font-family: "Raleway", sans-serif;
  margin: 0;
}

#main-content p {
  color: white;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 300px;
  margin-bottom: 32px;
}

#main-content a {
  background-color: rgb(255, 251, 0);
  padding: 12px 24px;
  color: black;
  font-size: 24px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 2px 4px 8px rgb(68, 67, 67);
}

#main-content a:hover,
#main-content a:active {
  background-color: rgb(255, 220, 0);
}

#highlights {
  padding: 24px;
  background: linear-gradient(0deg, rgb(253, 246, 198), rgb(255, 237, 117));
}

#highlights h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 40px;
  color: rgb(59, 65, 64);
  margin: 24px 0;
}

#destinations {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  margin: auto;
  margin-bottom: 40px;
}

.destionation img {
  width: 100%;
  height: 250px;
  box-shadow: 2px 4px 8px rgb(68, 67, 67);
  border-radius: 10px;
  object-fit: cover;
  margin: 0;
}

.destionation p {
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  font-size: 18px;
  color: rgb(124, 123, 123);
  margin: 20px 0;
}

.destionation strong {
  color: rgb(228, 197, 0);
  font-weight: bold;
}

.destionation {
  margin: 0 20px;
}


