#hero {
  height: 800px;
  background-image: url("/images/places/WinterBackground-hires.jpg");
  background-position: center;
  background-size: cover;
}

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

#hero-content h1 {
  color: white;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-family: "Raleway", sans-serif;
  margin: 0;
}

#hero-content p {
  color: white;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 200;
  margin-bottom: 3rem;
}

#hero-content a {
  text-decoration: none;
  background-color: #90bde1;
  padding: 12px 24px;
  color: black;
  font-size: 24px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 2px 4px 8px rgb(68, 67, 67);
}

#hero-content a:hover {
  background-color: #8ca4cc;
}

#highlights {
  padding: 24px;
  background: linear-gradient(0deg, #90bde1, #d7dfe8);
}

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

#destinations {
  display: flex;
  width: 90%;
  margin: auto;
  margin-bottom: 2rem;
  justify-content: center;
}

.destination {
  margin: 0 20px;
}

.destination p {
  text-align: center;
  font-size: 1.5rem;
  color: rgb(124,123,123);
  margin: 20px 0;
}

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

.destination strong {
  color: #8ca4cc;
}

/* Media Queries 
------------------------------------*/
@media (max-width: 48rem) {

  #hero {
    height: 800px;
    background-image: url("/images/places/WinterBackground-lowres.jpg");
    background-position: center;
    background-size: cover;
  }

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

  #hero-content h1 {
    color: white;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-family: "Raleway", sans-serif;
    margin: 0;
  }
  
  #hero-content p {
    color: white;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 200;
    margin-bottom: 3rem;
  }
  
  #hero-content a {
    text-decoration: none;
    background-color: #90bde1;
    padding: 12px 24px;
    color: black;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 2px 4px 8px rgb(68, 67, 67);
  }

  #highlights {
    padding: 2rem;
    background: linear-gradient(0deg, #90bde1, #d7dfe8);
  }
  
  #highlights h2{
   text-transform: uppercase;
   text-align: center;
   font-size: 1.8rem;
   color: rgb(59,65,64);
   margin: 2rem 0;
  }
  
  #destinations {
    display: block;
    width: 90%;
    margin: auto;
    margin-bottom: 2rem;
    justify-content: center;
  }
  
  .destination {
    margin: 3rem 1rem;
  }
  
  .destination img {
    height: 15rem;
    border-radius: 0.5rem;
  }

}