    :root {
        --news-banner-background: #c1fa0f;
        --news-banner-text: #2e10fa;
        --text-color: #333333;
        --background-color: #eeeeee;
        --works: #2e10fa;
        --press:#9af547;
        --cv: #f54f01;
        --about: #faeb6b;
        --contact: #efcaf5;
    }
    
    @font-face {
        font-family: 'Inter';
        src: url('../assets/fonts/inter-variable.woff2') format('woff2');
        font-weight: 100 900;
        font-style: normal;
    }
    
    body, html {
        margin: 0;
        padding: 0;
        height: 100%;
        font-family: "Inter", serif;
        font-optical-sizing: auto;
        font-style: normal;
        background-color: rgba(0, 0, 0, 0);
    }
    
    a {
        text-decoration: none;
        color: var(--text-color);
    }
    
    a:hover {
        text-decoration: none;
        color: var(--text-color)
    }
    
    canvas {
        position: fixed;
        top: 0;
        left: 0;
        z-index: -10;
    }

    #loading-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(238, 238, 238, 1.0);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        font-family: 'Inter', sans-serif;
        visibility: visible;
        opacity: 1;
        transition: opacity 1.0s ease-in-out, visibility 1.0s ease-in-out;
        z-index: 100000000;
    }

    .loader {
        border: 4px solid rgba(33, 33, 33, 0.5);
        border-top: 4px solid #333333;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        animation: spin 2s linear infinite;
    }
    
    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }