@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    /* background-color: #64CCC5;    */
}
.header{
    background-color: #053B50;
    padding: 50px 0 0 0;
}
h1{
    text-align: center;
    font-size: 50px;
    font-weight: bolder;
    margin: 0px 0 60px 0;
    font-family: 'Caveat', cursive;
    color: aliceblue;
   padding-bottom: 50px;
}
form{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
#search_input{
    width: 60%;
    max-width: 400px;
    padding: 10px 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 10px;
    font-size: 20px;
    color: #333;
}
.search_button{
    padding: 10px 25px;
    background-color: #138065;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 15px;
    margin-left: 20px;
    cursor: pointer;
}
.content{
    background-color: #176B87;
    padding-top: 70px;
}
.search_results{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
   
}
.search_result{
    width: 30%;
    height: 100%;
    margin-bottom: 60px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}
.search_result img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.2s ease-in-out;
}

.search_result:hover img{
    opacity: 0.7;
}
.search_result a{
    text-decoration: none;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    display: block;
}

#show_more{
    padding: 10px 20px;
    background-color: #009cba;
    text-align: center;
    display: block;
    margin: 30px auto;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: none;
}

.footer{
    background-color: #64CCC5;
    padding: 20px 0px;
}
p{
    text-align: center;
    font-size: 18px;
}
/* responsive media query */

@media screen and (max-width: 768px){
    .search_results{
        padding: 20px;
    }
    .search_result{
        width: 45%;
    }
}

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