
#main h1.title {
    font-size: 24px;
    color: #fff;
    padding: 10px;
    text-align: left;
    background-color: #b20000;
    font-weight: bold;
}

#main .store {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#main .store .img {
    width: 30%;
    margin-bottom: 20px;
}
#main .store .info {
    width: 68%;
}

#main .store .info .title {
    font-size: 20px;
    font-weight: bold;
    padding: 10px 15px;
    border-top: 3px solid #b20000;
    border-bottom: 3px solid #b20000;
    margin-bottom: 30px;
}

#main .store .info .text {
    font-size: 18px;
    line-height: 30px;
}


@media screen and (max-width: 600px) {
    #main .store .img {
        width: 100%;
    }
    #main .store .info {
        width: 100%;
    }
}






























