.typography-section {
    background-color: var(--white);
}

.typography-content {
    max-width: 800px;
    width: 100%;
    font-family: var(--base-font);
}

.typography-title {
    color: var(--black);
    font-size: 28px;
}

.typography-text {
    color: var(--black);
    font-size: 15px;
    line-height: 2;
}
.typography-text p{
    line-height:1.4;
    margin-bottom:16px;
}
@media(min-width:1280px) {
    .typography-content {
        max-width:1366px;
    }

    .typography-title {
        font-size: 40px;
    }

    .typography-text {
        font-size: 20px;
        line-height: 1.9;
    }

}