body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}

.container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 0px;
}

.input-wrap {
  position: sticky;
  display: flex;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  height: 80px;
  margin-top: 0px;
  background-color: rgba(153, 153, 153, 0.5);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 10;
  top: 0;
}
.input-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(5px);
  z-index: -1;
}

.part-wrap {
  display: flex;
}

h2 {
  display: none;
}

#searchQuery {
  height: 40px;
  margin-left: 20px;
}

.count {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
}

#searchButton {
  color: #ffffff;
  font-weight: 400;
  font-size: medium;
  width: 60px;
  height: 40px;
  background-color: rgb(248, 95, 95);
  border-radius: 10%;
  border: none;
}
#searchButton:hover {
  opacity: 0.7;
}

.wrap {
  margin-top: 40px;
}

#imageResults {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 2% 2%;
}

.img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.img-wrap:hover {
  opacity: 0.8;
}

.material-symbols-outlined {
  color: rgb(255, 255, 255);
  background-color: rgb(15, 172, 235);
  border-radius: 50%;
  font-size: 48px !important;
  position: absolute;
  bottom: 15px;
  right: 7px;
}
.material-symbols-outlined:hover {
  background-color: rgb(212, 35, 59);
  cursor: default;
}

.img-cont {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.img-cont:hover {
  transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  h2 {
    display: block;
  }
  .input-wrap {
    justify-content: space-between;
  }
  h2 {
    margin-left: 30px;
  }
  .part-wrap {
    margin-right: 30px;
  }
  #imageResults {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}/*# sourceMappingURL=style.css.map */