* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  background-color: #dbe5dd;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%2398ac92' fill-opacity='0.39' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
nav {
  margin-top: 5%;
  background: linear-gradient(
    to right bottom,
    rgb(118, 248, 118),
    rgb(228, 245, 228)
  );
  height: 5%;
  width: 100%;
  padding-top: 2%;
  padding-bottom: 3%;
}
ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  text-align: center;
}
li {
  list-style: none;
  font-size: 1.25rem;
  cursor: pointer;
}
a {
  text-decoration: none;
  color: green;
  font-size: 1.25rem;
}
a:hover,
li:hover {
  transform: translateX(5px) translateY(5px);
  color: rgb(47, 179, 255);
}
/*herbs */
.herbs {
  margin-left: 30%;
}
.filter-container {
  margin-top: 15px;
  width: 90vw;
  max-width: 900px;
}

.filter {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  border: 2px solid green;
}
.post {
  position: relative;
  background: linear-gradient(
    to right bottom,
    rgb(118, 248, 118),
    rgb(228, 245, 228)
  );
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  padding: 15px;
  margin: 20px 0;
  display: flex;
  width: 90vw;
  max-width: 900px;
}

.post .post-title {
  margin: 0;
}

.post .post-body {
  margin: 15px 0 0;
  line-height: 1.3;
}

.post .post-info {
  margin-left: 20px;
}

.post .number {
  position: absolute;
  top: -15px;
  left: -35px;
  font-size: 15px;
  width: 80px;
  height: 40px;
  border-radius: 50%;
  transform: rotate(-25deg);
  background-color: rgb(248, 248, 162);
  color: green;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
}

.loader {
  opacity: 0;
  display: flex;
  position: fixed;
  bottom: 50px;
  transition: opacity 0.3s ease-in;
}

.loader.show {
  opacity: 1;
}

.circle {
  background-color: rgb(32, 198, 235);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 5px;
  animation: bounce 0.5s ease-in infinite;
}

.circle:nth-of-type(2) {
  animation-delay: 0.1s;
}

.circle:nth-of-type(3) {
  animation-delay: 0.2s;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hidden {
  display: none;
}

/*botanics*/
.botanic-container {
  position: absolute;
  top: 20%;
  left: 10px;
  width: 25%;
  padding: 15px;
  z-index: 2;
  overflow: hidden;
}
.card {
  /* border-radius: 5px; */
  padding: 25px;
  background: linear-gradient(
    to right,
    rgb(243, 248, 213),
    rgb(189, 242, 177),
    rgb(236, 248, 193)
  );
  box-shadow: 2px 2px 2px rgb(204, 227, 251);
}
h3 {
  color: green;
}

/*antibiotic herbs*/
#antibio {
  color: black;
  display: flex;
  flex-direction: column;
  margin-top: -0.25%;
}
#antibio1:hover,
#antibio2:hover,
#antibio {
  transform: translateX(0) translateY(0);
}

/*antibacterial*/
.antibacterialContainer {
  position: absolute;
  top: 25%;
  left: 55%;
  width: 20%;
}

button {
  margin-top: 25px;
  padding: 5px;
  border-radius: 5px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 1.25rem;
  background-color: rgb(248, 248, 217);
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.4);
}
button:hover {
  transform: translateX(3px) translateY(3px);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

/*antiviral*/
.antiviralContainer {
  position: absolute;
  top: 25%;
  left: 78%;
  width: 20%;
}

/*grandma*/
#grandma {
  position: absolute;
  top: 20%;
  left: 10px;
  width: 25%;
  padding: 15px;
}
