@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&amp;family=Inter:wght@400;700&amp;family=Montserrat:wght@300;400&amp;display=swap');

:root {
    --accent-color: #f1b356;
    --secondary-color: #5558ab;
    --primary-color: #e4964e;
    --background-color: #181717;
}

html,
body {
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-color: var(--background-color);
    box-sizing: border-box;
    color: #eee;
    background-repeat: repeat;
    font-size: 1vw;
    overflow-x: hidden !important;
}

a {
    color: inherit;
    text-decoration: none;
}

::-moz-selection {
    color: black;
    background: var(--primary-color);
}

::selection {
    color: black;
    background: var(--primary-color);
}

/* Custom scrollbar for WebKit browser*/
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f173;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #eebd7d;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f09126;
}