*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body{
    background-color: #39297b;
    color: white;
}
h1{
    text-align: center;
    margin: 100px auto 50px;
    font-weight: 600;
    font-size: 30px;
}
form{
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    height: 80px;
    background-color: #434989;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;

    & input{
        flex: 1;
        height: 100%;
        border: 0;
        outline: 0;
        background-color: transparent;
        color: #fff;
        font-size: 20px;
        padding: 0 20px;
    }

    & ::placeholder{
        font-style: italic;
        color: white;
        font-size: 16px;
        /* text-align: left; */
    }

    & button{
        padding: 0 30px;
        height: 100%;
        background-color: #ff3929;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        border: 0;
        outline: 0;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        cursor: pointer;
    }

    & button:hover{
        background-color: #fa1606;
        font-weight: 900;
    }
}
#show-more-btn{
    background-color: #ff3929;
    color: white;
    border: 0;
    outline: 0;
    padding: 15px 25px;
    border-radius: 10px;
    margin: 10px auto 100px;
    cursor: pointer;
    display: none;
    font-size: 20px;
    font-weight: 500;
}
#show-result{
    width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
#show-result img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}