@import url("https://fonts.googleapis.com/css2?family=Ysabeau+Infant:ital,wght@0,100;0,400;1,1;1,100;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;500&family=Ysabeau+Infant:ital,wght@0,100;0,400;1,1;1,100;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ysabeau Infant", sans-serif;
}

body {
  line-height: 1.6;
}

h1 {
  font-size: 5vh;
  font-weight: bold;
  text-align: center;
  margin: 40px 0 60px 0;
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10vh;
}

#search-input {
  width: 60%;
  max-width: 400px;
  padding: 10px 20px;
  border: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  font-size: 18px;
  color: #333;
}

#search-input-button {
  padding: 10px 20px;
  background-color: #964578;
  color: rgba(0, 2, 3, 0.533);
  border: none;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border-radius: 5px;
  margin-left: 10px;
}

.search-results {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.search-result {
  margin-bottom: 60px;
  margin-left: 5px;
  width: 20%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.search-result img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-delay: 0.2s;
}

.search-result:hover img {
  opacity: 0.8;
}

.search-result a {
  font-size: 20px;
  text-decoration: none;
  color: #566;
  display: block;
  padding: 10px;
  text-transform: capitalize;
}

#show-more-button {
  background-color: #008453;
  font-size: 20px;
  border: none;
  color: aliceblue;
  padding: 10px 30px;
  text-align: center;
  display: none;
  margin: 30px auto;
  border-radius: 5px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .search-results {
    padding: 20px;
  }

  .search-result {
    width: 45%;
  }
}

@media screen and (max-width: 480px) {
  .search-result {
    width: 100%;
  }
}
