@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

body {
    padding: 0;
    margin: 0;
    padding-top: 118px;
    background: #F8F8FF;
    font-family: 'Nunito', sans-serif;
}

/* Сайт */
body > .all {
    padding: 50px 0;
    width: 1170px;
    margin-left: 50%;
    transform: translateX(-50%);
}
body > .all h1 {
    color: #113C64;
    font-weight: 700;
    font-size: 47px;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 40px;
}
body > .all span a {
    text-decoration: none;
    color: #000;
}
body > .all span a:hover {
    text-decoration: underline;
}


/* Посты */
body > .all .posts {
    width: 850px;
}
body > .all .post {
    border-bottom: 0.5px solid #D2D2D2;
    padding: 20px 0;
}
body > .all .posts p {
    color: #14171C;
    font-size: 17px;
    margin: 0;
    line-height: 25px;
}
body > .all .posts .post span {
    display: block;
}
body > .all .posts .post span:first-child {
    font-style: italic;
    font-weight: 300;
    font-size: 17px;
    color: #6F6F6F;
}
body > .all .posts .post span[data-last] {
    font-size: 20px;
    font-weight: 550;
    color: #113C64;
    margin: 15px 0;
}

/* Мобильная версия */
@media (max-width: 1260px) {
    body > .all {
        padding: 50px 40px;
        width: auto;
        margin-left: 0;
        transform: translateX(0);
    }
}
@media (max-width: 930px) {
    body > .all .posts {
        width: 100%;
    }
}
@media (max-width: 550px) {
    body > .all {
        padding: 30px 15px;
    }
    body > .all h1 {
        font-size: 30px;
    }
    body > .all .posts .post span:first-child {
        font-size: 14px;
    }
    body > .all .posts .post span[data-last] {
        font-size: 17px;
        margin: 10px 0;
    }
    body > .all .posts p {
        font-size: 14px;
    }
}