html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: Sans-serif;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0.4rem;
}

::-webkit-scrollbar-track {
  background: #888;
}

::-webkit-scrollbar-thumb {
  background: #555;
}

#holder {
  min-height: 100%;
  width: 100%;
  background-color: #4f9f4f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

header {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10vh;
  background-color: #137113;
}

header nav {
  font-size: 32px;
  width: auto;
}

header nav a {
  color: black;
  text-decoration: none;
}

header nav a:nth-child(n + 2) {
  margin-left: 1rem;
}

header nav a:hover {
  text-decoration: underline;
}

#detection {
  width: 50vw;
  margin: 1vh 25vw 0 25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#detection button {
  margin-bottom: 1vh;
  height: 13vw;
  width: 13vw;
  border: 4px solid #005a00;
  background-color: #8bbb8b;
  margin-left: 1vh;
  border-radius: 15%;
  outline: none;
}

#detection button img {
  width: 12vw;
  border-radius: 15%;
}

#detection button img:hover {
  cursor: pointer;
}

#results {
  top: 10vh;
  width: 100vw;
  height: 90vh;
  background-color: #4f9f4f;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#answerStats {
  width: auto;
  font-size: 22px;
}

.buttonholder {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.buttonholder button {
  font-size: 32px;
  border-radius: 5%;
  outline: none;
  border: 4px solid #005a00;
  background-color: #79b679;
  width: 8vw;
  height: 4vw;
}

@media only screen and (max-width: 1024px) {
  #answerStats {
    font-size: 32px;
  }
  #detection {
    width: 90vw;
    margin: 1vh 5vw 0 5vw;
  }
  #detection button {
    height: 25vw;
    width: 25vw;
  }
  #detection button img {
    width: 22vw;
  }
  .buttonholder {
    margin-top: 2vh;
  }
  .buttonholder button {
    width: 32vw;
    height: 16vw;
  }
}

@media only screen and (max-width: 767px) {
  header {
    height: 7vh;
  }
  header nav {
    font-size: 22px;
  }
  #answerStats {
    font-size: 22px;
  }
  #detection {
    width: 90vw;
    margin: 1vh 5vw 0 5vw;
  }
  #detection button {
    height: 41vw;
    width: 41vw;
  }
  #detection button img {
    width: 32vw;
  }
  .buttonholder {
    margin-top: 2vh;
  }
  .buttonholder button {
    font-size: 22px;
    width: 32vw;
    height: 16vw;
  }
}
/*# sourceMappingURL=styling.css.map */