@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&family=Roboto:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

::-webkit-scrollbar {
    display: none;
}

body {
    line-height: 1.6;
}

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

form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

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

#search-button {
    padding: 10px 20px;
    background-color: #138065;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin-left: 10px;
}

#search-button:hover {
    background-color: #0d5744;
}


.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%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.search-result img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.2s ease-in-out;
}

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

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

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


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


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