.article {
    grid-template-columns: 100%;
    height: auto;
    grid-template-rows: auto;
    grid-row-gap: 0;
}

.article title {
    grid-column: 1;
    grid-row: 1;
}

.article text1 {
    grid-column: 1;
    grid-row: 2;
    margin-left: 10px;
    margin-right: 10px;
}

.article text {
    grid-column: 1;
    grid-row: 4;
    margin-left: 10px;
    margin-right: 10px;
}

.article brandList {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

brandList brand {
    width: 150px;
    height: 120px;
    margin: 20px 10px;
}

brand picture {
    display: flex;
    width: 100%;
    height: 90px;
    align-items: center;
}

picture img {
    width: 100%;
    margin: unset;
}

brand name {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 10px;
    font-weight: bold;
    font-size: 20px;
}

@media(max-width: 800px){
    
    picture img {
        transform: unset;
        height: unset;
    }
}