main{
    max-width: 1100px;
    margin: 0 auto;
}
.about{
    margin-top: 20px;
}
.store{
    height: 550px;
    width: 100%;

}
.about  h1{
    font-size: 60px;
    text-align: center;
}
.about-description{
    display: flex;
    align-items: center;
    justify-content: space-around;

}

.text{
    width: 600px;
}
.text p{
    font-size: 20px;
}
@media  (max-width: 768px) {
    .about{
        margin-left: 20px;
        align-items: center;
    }
    .store{
        height: 500px;
        width: 700px;
        margin-left: 15px;
    }
    .about h1{
        font-size: 30px;
        margin-bottom: 0;
    }
    .about p{
        font-size: 18px;
    }
}
@media  (max-width: 320px){
    .store{
       display: none;
    }
    .about-description{
        flex-direction: column;
    }
    .text {
        width: 280px;
        text-align: center;
    }
}
@media  (max-width: 375px){
    .store{
       display: none;
    }
    .about-description{
        flex-direction: column;
    }
    .text {
        width: 280px;
        text-align: center;
    }
    .footer-block{
        height: 370px;
        justify-content: center;
    }
}