* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nav-link {
  font-size: 1.4em;
}

.park-nav {
  background-color: #02517d;
}

.home {
  background-image: url("https://images.squarespace-cdn.com/content/v1/50a7da09e4b07b4b7b0c2aa1/1546204471303-V1UNPNBJ00M7U5ZS7SMO/photo_workshop_glacier-6.jpg?format=2500w");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.hero {
  background-color: transparent;
}

.hero {
  height: 80%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#park-img {
  width: 100%;
  height: 40vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.park_content_container {
  padding: 30px 20px;
}

.page {
  margin-top: 30px;
  width: 70%;
  background-color: #fff;
  opacity: 90%;
  border-radius: 30px;
  min-height: 500px;
}

.search {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  font-size: 4vw;
}

.search input {
  overflow: hidden;
  width: 90%;
  max-width: fit-content;
  margin-left: 20px;
  border: none;
  padding: 20px 3%;
}

.search input:focus {
  outline: none;
}

#search-results {
  padding: 30px 10%;

}

#search-results h2 {
  font-size: 3vw;
}

#search-results a {
  color: #343a40;
  width: fit-content;
}

#search-results a:hover {
  color: #02517d;
  cursor: pointer;
  text-decoration: none;
}

.fee-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.fee-description-container {
  padding: 0 10px;
}

.fee-title {
  text-align: center;
}

.hours-container {
  margin-bottom: 40px;
  word-wrap: break-word;
}

.hours-container td {
  padding: 5px 10px;
}

.list-group {
  border: none;
}

.list-group .active {
  background-color: #02517d;
}

.list-group-item,
.list-group-item:first-child,
.list-group-item:last-child {
  border: none;
  border-radius: 30px;
}


footer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 15px 50px 15px;
}

footer a {
  opacity: 70%;
}

footer a:hover {
  opacity: 90%;
  text-decoration: none;
}

@media only screen and (min-width: 600px) {
  .search {
    font-size: 1.5em;
  }

  .park-data {
    width: 70%;
    margin: 0 auto;
  }

  .park_content_container {
    padding: 30px 0;
  }

  .fee-container {
    display: flex;
    flex-direction: row;
  }

  .fee-description-container {
    padding: 0 0 0 40px;
  }

  .fee-title {
    text-align: left;
  }

  #search-results h2 {
    font-size: 1.6em;
  }

}
