body{
    color: $text_color;
    font-size: 16px;
    font-weight: $font_weight_normal;
    background-color: $body_bg_color;
    button{
        font-family: inherit;
        @include transition();
    }
}

a{
    text-decoration: none;
    color: $text_color;
    @include transition();
    &:visited{
        color: $text_color; 
    }
 
}
p{
    a{
        &:hover{
            color: $text_color;
        }
    }
}
.site-title{
    font-size: 35px;
    font-weight: $font_weight_bold;
}
.#{$prefix}-section-title{
    font-size: 25px;
}

.#{$prefix}-post-title{
    @include limitation();
    font-size: 18px;
    &.blook-line-limit-3{
        @include limitation(3);
    }
}
.widget-title,
.#{$prefix}-post-title-lg{
    font-size: 24px;
}
.#{$prefix}-post-title-xs{
    font-size: 16px;
}
