@media screen and (max-width: 500px){

    h1 {
    font-weight: 600;
    margin: 70px auto 50px;
    text-align: center;
    color: black;
}

form input{
    width: 40%;
    font-size: 13px;
    padding: 0px 20px;
}

form button{
    font-size: 13px;
}

::placeholder{
    font-size: 13px;
}

    #search-result {
        width: 90%;
        margin: 90px auto 50px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
    }
    form {
    width: 90%; 
    margin: auto;
    height: 50px;
    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;

}


#search-result{
    margin-top: 50px;
}

form button{
    padding: 0px 10px;
}

.bgimage{
    width: 100%;
    height: 350px;
    background: url("bgcolor.jpg");
    position: absolute;
    top: 0px;
    z-index: -12;

}




}