:root {
    --primary-color: rgb(224, 212, 244);
    --primary-bg-color: rgb(18, 22, 23);
    --pirmary-bg-light: rgb(52, 49, 56);
    --secondary-color: rgb(136, 108, 228);
}

body {
    background-color: var(--primary-bg-color);
    color: var(--primary-color);
    font-family: 'Comfortaa', cursive;
    height: 100%;
    margin: 0;
}
html {
    height: 80%;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent; 
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 15px;
    transition: all 0.5s;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color); 
    transition: all 0.5s;
}

.splide__arrow {
    opacity: 0 !important;
    background: #ffffff00 !important;
    transition: all 0.3s ease !important;
}

.splide__arrow svg {
    fill: var(--secondary-color) !important
}