@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,200&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
}

body{
    line-height: 1.6;
}

h1 { 
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin: 40px 0 60px 0;
 }

/* Styles for the form container */
   form{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
   }

   #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-button{
    padding: 10px 20px;
    background-color: #45a049;
    color: #fff;
    border: none;
    font-size: 18px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px ;

   }


   /* cards styling  */
  .search-results{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .search-result{
    margin-bottom: 60px;
    width: 30%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    text-align: center;
  }
  

  .search-result img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.2s ease-in-out;
  }

  .search-result img:hover{
    opacity: 0.8;
  }

  .search-result a {
    color: #333;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 20px;
    display: block;
    padding: 10px;

  }


  /* Styles for the show more button */
#show-more-button {
    display: block;
    margin: 0 auto;
    padding: 12px 24px;
    background-color: #4CAF50;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: none;
  }
  
  /* Hover style for the show more button */
  #show-more-button:hover {
    background-color: #45a049;
  }

  /* responsiveness  */
  @media screen and (max-width:768px){
    .search-results{
        padding: 20px;
    }
    .search-result{
        width: 45%;
    }
  }
  

  @media screen and (max-width:480px){
    .search-result{
        width: 90%;
        justify-content: space-between;
    }
  }