*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;

}

body {
    font-family: "MyFont", sans-serif;
    background: #000;
    height: auto;         
    min-height: 100vh;    
     width: 100vw;
    overflow-x: hidden;  
    margin: 0;
    touch-action: pan-y; 
     -webkit-overflow-scrolling: touch;
}


@font-face {
    font-family: "MyFont";
    src: url("../fontcss/ofont.ru_Pastry Chef.ttf") format("truetype");
    font-display: swap; 
}

::-webkit-scrollbar {
    width: 12px; 
}


::-webkit-scrollbar-track {
    background: #0f0f0f; 
    border-radius: 6px;
}

/* Ползунок */
::-webkit-scrollbar-thumb {
    background-color: #000323;
    border-radius: 6px; 
 
}

/* При наведении на ползунок */
::-webkit-scrollbar-thumb:hover {
    background-color: #ff3b2e;
}