*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,html{
    background: #1b1a1a;
    color: wheat;
    width: 100%;
}
h1{ 
    margin-top: 100px;
    text-align: center;
    margin-bottom: 20px;
}
form{
    width: 90%;
    max-width: 600px;
    margin: auto;
    height: 55px;
    background: #434989;
    display: flex;
    align-items: center;
    border-radius: 8px;
}
::placeholder{
    background-color: transparent;
}
form input{
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 18px;
    padding: 0 30px;
}
form button{
    padding: 0 40px;
    height: 100%;
    background: #ff3929;
    color: #fff;
    font-size: 18px;
    border: 0;
    outline: 0;
    border-radius: 8px;
    cursor: pointer;
}
#show-more-btn{
    background: #f22a1c;
    counter-reset: #fff;
    border: 0;
    outline: 0;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    margin: 10px auto 100px;
}
#search-result{
    width: 100%;
    margin: 100px 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;

}
#search-result img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}
