@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --main-background: rgb(14, 14, 14);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --search-bg: rgb(23, 23, 23);
    --search-button-bg: rgb(30,30,30);
    --search-button-bg-hover: rgb(40,40,40);
    --search-button-bg-active: rgb(35,35,35);
    --filter-bg: rgb(25,25,25);
    --filter-bg-hover: rgb(35,35,35);
    --filter-bg-active: rgb(30,30,30);
    --search-bg-focus: rgb(27, 27, 27);
    --challenge-bg: rgb(25,25,25);
    --button-bg-orange: rgb(226, 34, 0);
    --button-bg-orange-hover: rgb(255, 38, 0);
    --button-bg-orange-active: rgb(240, 37, 1);
    --border-radius: 0.2rem;
    --filter-bg: rgb(25,25,25);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: var(--main-background);
}

.body-hidden {
    overflow: hidden;
}

/* MEDIA QUERIES */

@media (max-width: 800px) {
    html {
        scroll-padding-top: 70px;
    }
}