::-webkit-scrollbar {width: 8px;height: 6px;}::-webkit-scrollbar-track {background: #444444;}::-webkit-scrollbar-thumb {background: #787878; border-radius: 2px;}::-webkit-scrollbar-thumb:hover {background: #000000;border: 2px solid #ffffff;}/*Шрифт , скроллер сайта*/
body > main h1,body > main h2,body > main h3,body > main h4,body > main h5,body > main h6{
    margin-bottom: 0.84rem;
    margin-top: 2rem;
    margin-left: 8px;
    line-height: 1;
}
h1 {
    font-size: 44px;
}
h1 > span.decor{
   font-size: 61px;
   font-family: italic-montserrat , sans-serif;
   background: linear-gradient(to right, #12e, #a1a);
   background-clip: text;
   color: transparent;
}
/* ДЕКОРАЦИЯ ЗАГОЛОВКА */
section.description > p > span.decor{
    display: inline;
    position: relative;
}
section.description > p > span.decor::after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ffaa44;
    top: 100%;
    left: -1px;
}
/* ДЕКОРАЦИЯ ОПИСАНИЯ */

main.description > p.message{
    background: #f0f0f0;
    border-radius: 16px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 8px;
    padding-bottom: 7px;
}

/* Декорация сообщений */
@media screen and (max-width:650px){ 
    h1{
        font-size: 34px;
    }
    h1 > span.decor {
        font-size: 41px;
    }
    h2{
        font-size: 24px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
.decor-pulse{animation: Pulse 2s infinite;}
@keyframes Pulse {0%{transform: scale(1);}80%{transform: scale(1.1);}95%{transform: scale(1.21);}100%{transform: scale(1);}}