:root {
    --x: 45deg;
    --primary-clr: #04b364;
    --secondary-clr: #FFFBBD;
    --primary-devtom: #a5f9c5;
    --secondary-devtom: #fb4a4f;
    --error-clr: #F71735;
    --body-clr: #FBFAF8;
    --gradient-clr: linear-gradient(225deg, #04b364 2%, #FFFBBD 100%);
    --bg-dark: #07070A;
    --font-light: #FFFFEA;    
    --font-dark: #011627;
    --light-glass-clr: rgba(255, 255, 255, 0.1);
    --lighter-glass-clr: rgba(255, 255, 255, 0.2);
    --glass-clr: rgba(0, 0, 0, 0.25);
    --darker-glass-clr: rgba(0, 0, 0, 0.75);
    --slightly-dark-clr: rgba(0,  0, 0, 0.6);
    --border: 0.1rem solid rgba(255, 255, 255, 0.35);
    --small-radius: 0.5rem;
    --normal-radius: 1rem;
    --ease-out: cubic-bezier(0.5, 1, 0.89, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
    --small-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.6);
    --shadow:  0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.6);
    --normal-reflection: below 0.5rem linear-gradient(transparent, transparent, #000);
}

@font-face {
    font-family: General;
    src: url(/static/core/fonts/General.ttf);
}

@font-face {
    font-family: Headers;
    src: url(/static/core/fonts/Headers.ttf);
}

@font-face {
    font-family: Devtom;
    src: url(/static/core/fonts/DT.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: General;
    color: var(--font-dark);
    font-size: 10px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

::-webkit-scrollbar {
    width: 0.5rem;
    background: var(--font-dark);
    opacity: 0.5;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(transparent, var(--primary-clr));
    border-radius: var(--font-dark);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(transparent, var(--secondary-clr));
}

body {
    position: relative;
    background: var(--body-clr);
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    min-height: 100vh;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
h7,
small,
span {
    pointer-events: none;
    user-select: none;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7 {
    font-family: Headers;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    user-select: none;
}

.body-container {
    position: relative;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 10;
}

.err-cnt {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--gradient-clr);
    padding: 4rem 2.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}

.error-head {
    position: relative;
    width: fit-content;
    color: var(--font-light);
    font-size: 20rem;
    font-weight: 700;
    letter-spacing: 1rem;
}

.error-small {
    position: relative;
    width: fit-content;
    color: var(--font-light);
    font-size: 3.5rem;
    font-weight: 700;
}