@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Luckiest+Guy&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Science+Gothic:wght@100..900&display=swap');

*{
    border: 1px solid rgba(255, 0, 0, 0); /* Debugging purpose, to be removed later */
}


:root {
    --primary-color: rgb(0, 153, 255);
    --secondary-color: rgb(253, 99, 233);
    --schrift-color: white;
    --gridBorder-color: rgba(187, 122, 176, 0.616);
    --social_btn_color_one-color: rgb(206, 206, 206);
    --yt-color: rgb(231, 36, 36);
    --twitch-color: rgb(125, 0, 241);
    --dc-color: rgb(4, 121, 199);
    --gj-color: rgb(0, 199, 0);
    --itch-color: rgb(238, 156, 3);
    --scrollbar_thumb-color: rgba(124, 124, 124, 0.623);
    --scroll_track_one_dark-color: rgb(253, 99, 233);
    --scroll_track_two_dark-color: rgb(128, 126, 244);
    --apple-color: rgb(255, 0, 0);
    --azm-color:rgb(7, 81, 131);
    --tidal-color: rgb(20, 20, 20);
    --shazam-color: rgb(0, 153, 255);
    --ct-color: rgb(145, 190, 10);
    --tt_one-color: rgb(255, 0, 119);
    --tt_second-color: rgb(0, 132, 255);
    transition: 1s ease;
}

.lightmode {
    --primary-color: rgb(9, 22, 103);
    --secondary-color: rgb(107, 15, 104);
    --schrift-color: white;
    --gridBorder-color: rgb(92, 75, 97);
    --social_btn_color_one-color: rgb(21, 22, 21);
    --yt-color: rgb(165, 3, 3);
    --twitch-color: rgb(85, 4, 161);
    --dc-color: rgb(3, 79, 129);
    --gj-color: rgb(3, 129, 3);
    --itch-color: rgb(170, 112, 4);
    --scrollbar_thumb-color: rgba(124, 124, 124, 0.377);
    --scroll_track_one_dark-color: rgb(87, 17, 96);
    --scroll_track_two_dark-color: rgb(51, 15, 55);
    --apple-color: rgb(204, 47, 47);
    --azm-color:rgb(14, 60, 90);
    --tidal-color: rgb(46, 46, 46);
    --shazam-color: rgb(0, 106, 177);
    --ct-color: rgb(110, 142, 12);
    --tt_one-color: rgb(183, 0, 46);
    --tt_second-color: rgb(38, 0, 255);
    transition: 1s ease;
}



body {
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    margin: 0;
    height: 100vh;
    background-size: 200% 150%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    cursor: default;
    animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}

::-webkit-scrollbar {
    width: 1vh;
    transition: 500ms;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
    transition: 500ms;
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar_thumb-color);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: 500ms;
}

::-webkit-scrollbar-thumb:hover {
    transition: 500ms;
    background: rgba(163, 163, 163, 0.377);
}

::-webkit-scrollbar-thumb:active {
    transition: 500ms;
    background: rgba(102, 102, 102, 0.377);
}



@media (max-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    margin: 0;
    height: auto;
    background-image: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: auto;
    cursor: default;
  }
}