h2{
    color: brown;
    text-align: center;
}


.input-group
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px auto;

    background-color: rgb(37, 37, 39);
    padding: 8px 16px 8px 8px;
    border-radius: 24px;
    gap: 10px;
    width: 500px;
}

.input-icon
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 32px;
    min-height: 32px;
}

.input-field
{
    width: 100%;
}

.input-field:focus
{
    outline: none;
}

.items
{
    margin: 32px auto;
    width: 400px;

    display: flex;
    flex-direction: column;
    margin-top: 15px;
    background-color: rgb(27, 27, 27);
    border-radius: 12px;
    padding: 14px;
    gap: 12px;
    max-height: 162px * 3;
}

.item
{
    background-color: rgb(46, 46, 46);
    display: flex;
    gap: 12px;
    height: 150px;
}

.item-image img
{
    margin: 10px 10px;
    width: 130px;
    height: 130px;
    image-rendering: pixelated;
}

.item-title
{
    font-size: 35px;
    margin-top: 25px;
    color: rgb(20, 165, 20);
}
.item-subtitle
{
    font-size: 25px;
    margin-top: -20px;

    color: rgb(206, 98, 10);
}
.item-description
{
    font-size: 18px;
    margin-top: -10px;
}

#no_results
{
    font-style: oblique;
    display: none;
    text-align: center;
}

@media only screen and (max-width:700px) {
    
    .input-group
    {
        width: 300px;
    }

    .items
    {
        width: 300px;
    }

    .item-image img
    {
        margin: 30px 10px;
        width: 80px;
        height: 80px;
    }

    .item-title
    {
        font-size: 25px;
    }

    .item-subtitle
    {
        font-size: 23px;
    }
}