@font-face {
font-family: 'poppins';
src: url('fonts/poppins.otf') format('truetype');
}

::-webkit-scrollbar {
    width: 0vmax; /* width of the entire scrollbar */
}

::-webkit-scrollbar-track {
    background: var(--sec); /* color of the tracking area */
}

::-webkit-scrollbar-thumb {
    background: var(--acc); /* color of the scroll thumb */
    border-radius: 1vmax;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pri); /* color of the scroll thumb on hover */
}

html {
    scroll-behavior: smooth;
}
body {
    background: var(--bg);
    width: 100%;
    height: 100%;

    overflow-x: hidden;


    scrollbar-width: thin; /* width of the scrollbar */
    scrollbar-color: #888 #f1f1f1; /* color of the scroll thumb and tracking area */
}

#blur {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 0;
    backdrop-filter: blur(8vmax);

    top: 0px;
    left: 0px;
}

.window1, .window2, .window3 {
    scale: 0.8;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    opacity: 1;
}
