@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");

body {
  margin: 0;
  padding: 0;
  background-color: #ecf0f5;

  font-family: "Poppins", sans-serif;
}
h1 {
  padding: 10px;
  text-align: center;
  text-shadow: 4px 4px 3px #24ccb6;
}
form {
  margin: 0 32%;
}
#search-title {
  text-align: center;
  text-shadow: 2px 2px 2px #24ccb6;
}
/*----------Search box part---------*/
.search-box input {
  width: 300px;
  height: 40px;
  background-color: #fff;
  border: none;
  border-radius: 20px;
  text-align: center;
  box-shadow: 13px 13px 20px #a4a5a7, -13px -13px 20px #d7e9f7;
}
.search-box button {
  height: 40px;
  width: 100px;
  font-size: 1rem;
  font-weight: 800;
  background-color: #0be4c7;
  color: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #ecf0f3;
}
.search-box button:hover {
  background-color: #3aa092;
}

/*----------Search results part---------*/
#output {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 20px;
}

.anime-group {
  padding: 10px 0;
  background-image: linear-gradient(to right, #0be4c7, #45aa9d);
  color: #000;
  height: auto;
  width: 280px;
  border-radius: 10px;
  box-shadow: 13px 13px 20px #a4a5a7, -13px -13px 20px #d7e9f7;
  transition: 1s;
}
.anime-group:hover {
  transform: scale(1.2);
}
.anime-group img {
  height: 200px;
  width: 280px;
}
.anime-group h4 {
  height: 50px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.anime-group p {
  font-size: 0.75rem;
  margin-left: 10px;
}

/*--------Page responsive part---------*/
@media screen and (max-width: 767px) {
  form {
    margin: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  .search-box input {
    width: 280px;
  }
  .search-box button {
    width: 90px;
    font-size: 0.9rem;
  }
  #output {
    gap: 2rem;
  }
}
