
header #logo {
    width: 100px;
}
header #logo img{
    max-width: 100px;
    margin-top: 5px;
}

@media only screen and (max-width: 800px) {
    header #logo {
        width: 60px;
    }
    header #logo img{
        max-width: 60px;
        margin-top: 5px;
    }
    header h1 {
        display: none;
    }

    .item {
        display: grid;
        grid-template-areas:
                'brewer brewer'
                'title title' 
                'style  abv'               
                'description description';
        
        grid-template-columns: auto auto ;
        border: solid 1px #FFF;
        align-content: center;
        align-items: center;
         justify-items: center;
        margin-bottom: 5px;
        transition: var(--standard-transition);
    }
    .item h3 {
        text-align: center;
        width: 100%;
        padding: 5px;
    }
    .item .brewery {
        text-align: center;
        width: 100%;
    }
    .item .abv {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: #FFF;
        font-size: 14px;
        padding: 0;
        line-height: normal;
        width: 100px;
        border-radius: 10px;
    }
    .item .abv label {
        margin-right: 5px;
    }
    .item .style { 
        background-color: transparent;
        justify-content: center;
        background-color: #FFF;
        padding: 0;
        line-height: normal;
        width: fit-content;
        border-radius: 10px;
        min-width: 100px;
    }

}