@import url("https://fonts.googleapis.com/css2?family=Fugaz+One&family=Open+Sans:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#container {
  height: 100vh;
  width: 100vw;
}

#headerMenu {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 80px;
  padding-right: 17%;
}
#gifufyLogo {
  justify-self: flex-start;
  height: 54px;
  margin-left: 22px;
  margin-right: 20px;
}
.headerButton {
  height: 50px;
  width: 170px;

  border: none;
  border-radius: 5px;
  background-color: transparent;
  overflow: hidden;

  font-size: 15px;
  font-weight: 700;
  font-family: "Fugaz One";
}
#btnBox1Highlight {
  width: 340px;
  position: absolute;
  z-index: -1;
}
#btnBox2Highlight {
  width: 340px;
  position: absolute;
  z-index: -1;
}
#highlightButton1 {
  position: absolute;
  left: 0;
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.309);
  background-color: rgb(168, 226, 182);
}
#highlightButton2 {
  position: absolute;
  left: 0;
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.309);
  background-color: rgb(168, 226, 182);
}
.animationGoRight {
  animation: slideRight 0.5s ease-in 0s 1 normal forwards;
}
.animationGoLeft {
  animation: slideLeft 0.5s ease-in 0s 1 normal forwards;
}
#btnBox1 {
  display: flex;
}
#btnBox2 {
  display: flex;
}

#searchBody {
  height: calc(100vh - 80px);
  width: 100vw;

  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("memeCollage.jpg");
  background-repeat: none;
  background-size: cover;

  border-bottom: 5px solid RGB(39, 38, 39);
}
#searchDiv {
  height: 38%;
  width: 80%;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  backdrop-filter: blur(3px);
  border-radius: 30px;
}
#searchFormTitle {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  min-width: 702px;

  color: white;
  font-size: 38px;
  font-family: "Fugaz One";
  letter-spacing: -2px;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
}
#searchBar {
  display: flex;
  align-items: center;
  height: 55px;
  width: 100%;

  background-color: white;
  border-radius: 5px;
  overflow: hidden;
}
#searchIcon {
  height: 22px;
  width: 22px;
  margin-right: 5px;
  margin-left: 13px;
}
#searchInputTxtBox {
  height: 100%;
  width: 100%;
  padding-left: 15px;

  border: none;
  font-size: 15px;
  font-family: "open sans";
  font-weight: 500;
}
#searchSubTxt {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  min-width: 746px;

  color: white;
  font-size: 21px;
  font-family: "open sans";
  font-weight: 500;
  line-height: 50px;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
}

#responseContainer {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  height: auto;
  width: 100%;
  padding: 5px;

  background-color: RGB(39, 38, 39);
}
#responseContainer img {
  padding: 5px;
}
#waitLoopDiv {
  display: none;
  justify-content: center;
  height: 300px;
  width: 100%;
  background-color: RGB(39, 38, 39);
}

@keyframes slideRight {
  0% {
    left: 0;
  }
  10% {
    left: 17px;
  }
  20% {
    left: 34px;
  }
  30% {
    left: 51px;
  }
  40% {
    left: 68px;
  }
  50% {
    left: 85px;
  }
  60% {
    left: 102px;
  }
  70% {
    left: 119px;
  }
  80% {
    left: 136px;
  }
  90% {
    left: 153px;
  }
  100% {
    left: 170px;
  }
}
@keyframes slideLeft {
  0% {
    left: 170px;
  }
  10% {
    left: 153px;
  }
  20% {
    left: 136px;
  }
  30% {
    left: 119px;
  }
  40% {
    left: 102px;
  }
  50% {
    left: 85px;
  }
  60% {
    left: 68px;
  }
  70% {
    left: 51px;
  }
  80% {
    left: 34px;
  }
  90% {
    left: 17px;
  }
  100% {
    left: 0px;
  }
}
