:root {
    --primary: #39663a;
    --primary-content: #c1ddc2;
    --primary-dark: #274527;
    --primary-light: #4b874d;

    --secondary: #E0B729;
    --secondary-content: #3a2d00;
    --secondary-dark: #c4a122;
    --secondary-light: #f3c82d;

    --tertiary: #592A7E;

    --background: #fefefe;
    --background-dark: #f5f5f5;
    --foreground: #fbfbfb;
    --border: #dddfe2;

    --black: #232629;
    --black-light: #5e646e;
    --black-lighter: #848a95;

    --success: #3aff3a;
    --warning: #ffff3a;
    --error: #ff3a3a;
    --success-content: #003a00;
    --warning-content: #3a3a00;
    --error-content: #ffffff;
}


* {
    box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
    background: #fefefe;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    /* cursor: url('/assets/icons/sword_32.ico'), auto; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 700;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    /* cursor: url('/assets/icons/sword_32.ico'), auto; */
}

.primary-wrapper {
    overflow-x: hidden
}

.container {
    width: 1110px;
    margin: 0 auto;
}



h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}


.button {
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    color: #fff;
    background-color: var(--primary);
    border-radius: 100px;
    font-size: 18px;
}

img {
    user-select: none;
}