/* ROOT */

:root {
    --primary-color: rgb(113, 61, 121);
    --primary-color-bg: rgba(113, 61, 121, 0.1);
    --primary-bg: #f8f9fa;
    --dark-bg: #1a121d;

}

/* GENERAL */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}


body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--primary-bg);
    overflow-x: hidden; 
    color: #333;
}
