:root {
    --light-secondary: #FAA275;
    --dark-secondary: #FF8C61;
    --light-primary: #CE6A85;
    --mid-primary: #985277;
    --dark-primary: #5C374C;
    --background: #131313;
    --text: #ffffff;
}

* {
    color: var(--text);
    font-family: 'Roboto';
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, button, label {
    color: var(--text);
    font-family: 'Roboto Mono';
}

p { line-height: 1.5rem;}

body {
    background-color : var(--background);
    margin: 0;
}

::-webkit-scrollbar { width: 5px }
::-webkit-scrollbar-track { background: var(--dark-secondary) }
::-webkit-scrollbar-thumb { background: var(--light-primary) }

button {
    padding: 1rem 1.5rem;
    background-color: #131313;
    color: white;
    cursor: pointer;
    transition: background-color .3s, color .3s;
}
button.orange {
    border: 2px solid #FF8C61;
}
button.purple {
    border: 2px solid #985277;
}
button.orange:hover {
    color: #131313;
    background-color: #ff8c61;
}
button.purple:hover {
    color: #131313;
    background-color: #985277;
}

@keyframes fadeIn{
    from {
        transform: translate(-5px,-1rem);
        opacity: 0;
    }
}

@keyframes stagger {
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}