html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  background-color: #00162a;
  scroll-behavior: smooth;
}
.ubuntu-light {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.ubuntu-regular {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.ubuntu-medium {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.ubuntu-bold {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.ubuntu-light-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.ubuntu-regular-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.ubuntu-medium-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.ubuntu-bold-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: italic;
}
h1 {
  margin-bottom: 0;
}
h2 {
  margin: 0;
}
a:link {
  color: #ffffff;
  text-decoration: none;
}
a:visited {
  color: #ffffff;
  text-decoration: none;
}
a:hover {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
a:active {
  color: #ffffff;
}
#container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero01.jpg");
  background-size: cover;
  -webkit-overflow-scrolling: touch;
  align-items: center;
  justify-content: center;
}
#nav {
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #ffffff;
}
.lines {
  width: 250px;
  height: 14px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.nav-btn {
  display: flex;
  width: 200px;
  height: 50px;
  background: transparent;
  justify-content: center;
  align-items: center;
  border: 0;
  color: #ffffff;
  font-weight: bold;
  transition: 0.5s;
}
.nav-btn:hover {
  background-color: #ffffff;
  color: #000000;
  opacity: 0.3;
  transition: 0.5s;
  cursor: pointer;
}
#body-window {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 80%;
  border: 2px solid #ffffff;
  border-radius: 20px;
  margin-top: 0;
}
#body-window-inner-wrap {
  display: flex;
  flex-direction: row;
  height: 100%;
}
#body-message-wrap {
  display: flex;
  flex-direction: column;
  width: 600px;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
  margin-left: 100px;
}
#body-image {
  display: flex;
  width: 250px;
  height: 242px;
  background-image: url("../images/campsite01.png");
}
#body-heading {
  display: flex;
  width: 500px;
  height: auto;
  font-size: 72px;
  font-weight: bold;
}
#body-byline {
  display: flex;
  width: 500px;
  height: auto;
  font-size: 24px;
  line-height: 28px;
}
#search-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
}
#home-image {
  display: block;
  width: 600;
  height: auto;
}
#stats {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 550px;
  right: 670px;
  height: auto;
  line-height: 22px;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.85);
}
#stats a {
  color: #ffffff;
  text-decoration: underline;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.85);
}
#stats a:hover {
  color: #ffd700;
  text-decoration: underline;
}
#stats a:active {
  color: #ffffff;
}
#stats a:visited {
  color: #ffffff;
}
.search {
  display: flex;
  width: 580px;
  height: 50px;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  align-items: center;
  margin-top: 20px;
  border: 2px solid #ffffff;
  border-radius: 20px;
  padding-left: 20px;
}
#search-text {
  display: flex;
  width: 90%;
  background: transparent;
  justify-content: left;
  font-size: 24px;
  border: none;
  outline: none;
  box-shadow: none;
  color: #ffffff;
}
#search-text::placeholder {
  color: #ffffff;
  opacity: 0.5; /* Chrome reduces opacity by default */
}
#search-glass {
  display: flex;
  width: 10%;
  font-size: 24px;
  justify-content: right;
  padding-right: 20px;
  cursor: pointer;
}

/*--MOBILE DEVICES------------------*/
@media (max-width: 768px) {
  #container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    background-size: cover;
    align-items: center;
    justify-content: center;
  }
  #body-window {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: auto;
    border: 2px solid #ffffff;
    border-radius: 20px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
  }
  .lines {
    display: none;
  }
  #body-window-inner-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  #body-message-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }
  #body-image {
    display: flex;
    width: 250px;
    height: 242px;
    margin-top: 20px;
  }
  #body-heading {
    display: flex;
    width: 80%;
    height: auto;
    font-size: 42px;
    font-weight: bold;
  }
  #body-byline {
    display: flex;
    width: 80%;
    height: auto;
    font-size: 14px;
    line-height: 18px;
  }
  #search-wrap {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
  }
  #home-image {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
  }
  #home-image img {
    width: 80%;
    height: auto;
    justify-content: center;
    align-items: center;
  }
  #stats {
    display: flex;
    flex-direction: column;
    height: auto;
    font-size: 14px;
    line-height: 18px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.85);
  }
  .search {
    display: flex;
    width: 80%;
    height: 50px;
    background: transparent;
    font-size: 18px;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    padding-left: 20px;
  }
  #search-text {
    display: flex;
    width: 90%;
    background: transparent;
    justify-content: left;
    font-size: 24px;
    border: none;
    outline: none;
    box-shadow: none;
    color: #ffffff;
  }
  #search-glass {
    display: flex;
    width: 10%;
    font-size: 24px;
    justify-content: right;
    padding-right: 20px;
    cursor: pointer;
  }
  @supports (-moz-appearance: none) {
    .nav-btn {
      font-size: 12px;
    }
    #body-heading {
      font-size: 32px;
    }
  }
}
