@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");
* {
  padding: 0;
  margin: 0;
  font-family: "Poppins";
  /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
}

body {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}

.navbar {
  width: 100%;
  height: 30vh;
  min-height: 10rem;
  background: #c778c7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

.navbar header {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  background: violet;
  padding: 0.5rem;
  margin: 0.1rem;
  border-radius: 1rem;
  border-style: solid;
  border-width: 0.2rem;
  border-color: darkmagenta;
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
}

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

.navbar header:hover {
  cursor: pointer;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.lowernavbar {
  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;
}

.lowernavbar .pallet {
  height: clamp(5rem, 55%, 8rem);
  background: lightseagreen;
  padding: 0.5rem;
  margin: 0.4rem;
  border-radius: 0.5rem;
  border-style: solid;
  border-width: 0.15rem;
  border-color: darkmagenta;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
}

.lowernavbar .pallet:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.lowernavbar .pallet .clearBTN {
  background: #ff9494;
  padding: 0.3rem;
  margin: 0.2rem;
  border-radius: 0.4rem;
  border-style: solid;
  border-width: 0.1rem;
  border-color: red;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

.lowernavbar .pallet .clearBTN:hover {
  cursor: pointer;
  background: red;
  color: white;
}

.lowernavbar .pallet .predict {
  background: lightgreen;
  padding: 0.3rem;
  margin: 0.2rem;
  border-radius: 0.4rem;
  border-style: solid;
  border-width: 0.1rem;
  border-color: darkgreen;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

.lowernavbar .pallet .predict:hover {
  cursor: pointer;
  background: darkgreen;
  color: white;
}

.lowernavbar .prediction {
  height: clamp(5rem, 55%, 8rem);
  background: #e78e8e;
  padding: 0.5rem;
  margin: 0.5rem;
  border-radius: 0.5rem;
  border-style: solid;
  border-width: 0.15rem;
  border-color: darkred;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lowernavbar .prediction .pTitle {
  font-size: clamp(1rem, 3vw, 2rem);
}

.display {
  width: 100%;
  height: 55vh;
  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;
}
/*# sourceMappingURL=styles.css.map */