*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
html,body{
    width: 100%;
    height: 100%;
    background-color: rgb(6, 6, 116);
    color: white;
}
h1{
    font-size: 40px;
    display: flex;
    justify-content: center;
    padding-block:50px;
}
form{
    width: 90%;
    max-width: 600px;
    background-color:rgb(32, 32, 100);
    margin: auto;
    height: 80px;
    display: flex;
    align-items: center;
    border-radius: 8px;
}
form input{
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 18px;
    padding: 0 30px;
}
::placeholder{
    font-size: 18px;
    color: white;
}
form button{
    padding:0px 40px;
    height: 100%;
    border-top-right-radius:8px;
    border-bottom-right-radius:8px;
    outline: none;
    border: none;
    cursor: pointer;
    color: white;
    background-color: orangered;
    font-size: 18px;
    
}
.btn{
    display: flex;
    justify-content: center;
    height: 100px;
}
#show-more-btn{
    font-size: 18px;
    background-color: orangered;
    color: white;
    outline: none;
    border: none;
    height: 60px;
    padding: 0px 20px;
    margin-block: 10px;
    cursor: pointer;
    display: none;
}
#search-result{
    width: 80%;
    margin: 100px auto;
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
}
#search-result img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;

}