.parkMain{
    margin-bottom: 3rem;
}
main {
  margin-top: 1rem;
  padding: 1rem;
}
.imageContainer {
  width: 100%;
  height: 450px;
  margin-top: 2rem;
}

.imageContainer img {

  height: 100%;
  border-radius: 13px;
  margin: 0 auto;
  margin-top: 1rem;
 
}

h1 {
  text-align: center;
  color: #743100;
  margin-top: .7rem;
}
.selectContainer{
    width: 100%;
}
select {

  color: #545700;
  border: 5px solid #fefef8;
  border-radius: 18px;
  padding: 5px 25px;
  transition: all 0.3s;
  width: 80%;
  text-align: center;
  margin-top: 1rem;
  cursor: pointer;
}

.filterContainer{
  text-align: center;
  margin-top: 1.5rem;
  margin-top: 0.5rem;
  background-color: #6A775F;
  color: #fefef8;
  border-radius: 1rem;
  padding: 1rem;
  max-width: 700px;
  margin: 1.3rem auto;
  
}
.filterContainer h5{
    font-size: 1.1rem;
    font-weight: bold;
}
.parkHr {
  margin-top: 50px;
  margin-bottom: 10px;
  color: grey;
  opacity: .3;
}

.noResultsText{
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 1rem 1rem;
    margin: 2.5rem 0;
    color: #743100;
    border: 0.5px solid #e5e7eb;
    border-radius: 18px;
    background-color: rgba(249, 250, 251);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Parks Display */

.parkContainer {
  border: 0.5px solid #e5e7eb;
  background-color: rgba(249, 250, 251);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adjust shadow properties as needed */
  padding: 24px; /* Adjust padding as needed */
  border-radius: 18px;
  margin-top: 1.2rem;
}

.parkContainer h4 {
  font-weight: bolder;
  font-size: 1.3rem;
  color: #743100;
}

.linkOfPark{
text-decoration: none;
}
/* Responsiveness */

@media (min-width: 900px) {
  .parkContainer {
    width: 40%;
  }
  #content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .filter-box {
    display: flex;
    justify-content: center;
   
  }
  .filter-box{
    width: 100%;
  }
  .selectContainer{
    width: 50%;
    padding: 1rem;
  }
  select{
    margin-top: 0;
  }
}
