:root{
    --color--primary: rgb(0, 174, 255);
    --color--secundary: rgb(83, 202, 79);
}
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

html{
    font-family: sans-serif;
    scroll-behavior: smooth;
}

html, body{
    width: 100%;height: 100%;
}

@keyframes spinner {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}