No responsive design is displayed

Well, it was my fault. I had added a media-query to style.css and I put:

@media (min-width: 1300px) {
h2.site-description {
    margin-top: 130px;
}

That is to say, I forgot a bracket. It should be:

@media (min-width: 1300px) {
h2.site-description {
    margin-top: 130px;
}
}

That broke all my next css properties.