* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica", "Arial", sans-serif;
}

nav {
  display: flex;
  justify-content: space-between;
  background-color: #333;
  padding: 10px;
}

nav .nav-logo a img {
  height: 50px;
  vertical-align: middle;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}

nav ul li a {
  display: inline;
  color: rgb(79, 176, 255);
  padding: 20px;
  text-decoration: none;
}

nav ul li a:hover {
  background-color: #555;
  color: white;
}

nav a.logo {
  height: 50px;
}

nav ul li a.active {
  color: #dcdcdc;
}

h1 {
  text-align: center;
}

p {
  line-height: 1.6;
}

.foreground {
  position: relative;
  width: 100%;
  margin: auto;
  top: 5%;
}

.background-img {
  background-image: url("mountainBackground.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 170vh;
  position: relative;
}

h1, .item-box, details, .spaceBelow, footer h2.footerHeader {
  margin-bottom: 20px;
}

summary {
  margin-bottom: 10px;
}

.item-box {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 7.5px;
  background-color: aliceblue;
  border-radius: 15px;
  max-width: 960px;
  width: 100%;
}

.item-box ul ul {
  padding-left: 20px;
}
.item-box ul {
  padding-left: 20px;
}
.item-box ul li {
  margin-bottom: 5px;
}

.boxImage {
  width: 100px;
  margin-right: 20px;
}

.boxTime {
  font-style: italic;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
  position: static;
  bottom: 0;
  width: 100%;
}

footer h2.footerHeader {
  margin-top: 20px;
}

.fa {
  padding: 10px;
  text-align: center;
  text-decoration: none;
  color: white;
}

.fa:hover {
  opacity: 0.7;
}

.bigText {
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .bigText {
    font-size: 95px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  .item-box {
    max-width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .bigText {
    font-size: 100px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
  .item-box {
    max-width: 90%;
  }
}

@media screen and (max-width: 1024px) {
  .bigText {
    font-size: 105px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 21px;
  }
  .item-box {
    max-width: 95%;
  }
}

@media screen and (min-width: 1281px) {
  .bigText {
    font-size: 110px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  .item-box {
    max-width: 80%;
  }
}
