
/* 
    Created on : 9 июл. 2023 г., 13:07:09
    Author     : Popov Andrey, yellowkite@yandex.ru, +7 985 643-24-32
*/
            @font-face {
                font-family: 'Comfortaa'; 
                src: local('Comfortaa'), url(../webfonts/comfortaa.ttf); 
            }
            
            @font-face {
                font-family: 'Larisa Script'; 
                src: local('Larisa Script'), url(../webfonts/Larisa-script.ttf); 
            }
            /*Обычный*/
            @font-face {
                font-family: 'Georgia';
                src: local('Georgia'), url(../webfonts/georgia.ttf);
                font-weight: normal;
                font-style: normal;
                font-stretch: normal;
                font-variant: normal;                
            }
            /*Жирный*/
            @font-face {
                font-family: 'Georgia';
                src: local('Georgia'), url(../webfonts/georgiab.ttf);
                font-weight: bold;
                font-style: normal;
                font-stretch: normal;
                font-variant: normal;                
            }
            /*Обычный курсив*/
            @font-face {
                font-family: 'Georgia';
                src: local('Georgia'), url(../webfonts/georgiai.ttf);
                font-weight: normal;
                font-style:  italic;
                font-stretch: normal;
                font-variant: normal;                
            }
            /*Жирный курсив*/
            @font-face {
                font-family: 'Georgia';
                src: local('Georgia'), url(../webfonts/georgiaz.ttf);
                font-weight: bold;
                font-style:  italic;
                font-stretch: normal;
                font-variant: normal;                
            }
            
            @font-face {
                font-family: 'Saar SP Demo';
                src: local('Saar SP Demo'), url(../webfonts/SaarSPDemo.otf) format("opentype");                               
            }
             
            * {
                margin: 0;
                padding: 0;               
            }
            
            body {
                width: 100vw;
                font-family: Comfortaa;
                line-height: 1.5;
                color: #2C2D33;
            }
            
            h1, h2, h3 {                
               font-family: Saar SP Demo;
               line-height: 1.5;
            }
            
            h1 {
               font-weight: bold;
               font-size: 2em; 
            }
            
            h2 {                
                font-size: 2em; 
                font-weight: normal;
                letter-spacing: 2px;/*Увеличим расстояние между буквами, 
                                    чтобы заглавные буквы лучше читались*/
            }
            
            
            
            h3 {
                font-size: 1em;      
                font-family: Comfortaa;
                font-weight: bolder;
            }
            
            .nobr {
                white-space: nowrap;
            }
            
            


