@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #f7f7f7;
    color: white;
}

h1 {
    font-weight: 600;
    margin: 100px auto 50px;
    text-align: center;
    color: black;
}

form {
    width: 90%;
    max-width: 600px;
    margin: auto;
    height: 60px;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    border-radius: 9px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;

}

form input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 18px;
    padding: 0px 30px;
    color: rgb(38, 38, 38);
    caret-color: black;
}

form button {
    padding: 0 30px;
    height: 100%;
    background-color: #767676;
    color: white;
    font-size: 18px;
    border: none;
    outline: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    cursor: pointer;
}

::placeholder {
    color: rgb(154, 153, 153);
    font-size: 18px;
}

.bgimage{
    width: 100%;
    height: 350px;
    background: url("bgcolor.jpg");
    position: absolute;
    top: 0px;
    z-index: -12;

}




#show-more-btn {
    background-color: #767676;
    color: white;
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px auto 100px;
    display: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

#search-result {
    width: 90%;
    margin: 90px auto 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}

#search-result img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 5px;
}