@font-face {
    font-family: 'Renault Regular';
    src: url(/fonts/NouvelR-Regular.otf);
}

:root {
    --dark: #000000;
    --white: #ffffff;

    --background-main: #000000;
    --light-contrast: #f2f2f2;
    --dark-contrast: #000000;
    --ligh-dark-contrast: #0e0e0e;


    --item-color1: #FFFCE3;
    --item-color2: #1A1A1D;
    --item-color3: #FFFCE3;
    --item-color4: #6189BC;
}

* {
    box-sizing: border-box;
    font-family: 'Renault Regular';
}

body {
    margin: 0;
    padding: 0;
    background-image: url("assets/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.disable-view {
    display: none;
}

.disabled {
    cursor: not-allowed;
}

h1 {
    text-align: center;
    font-size: 3em;
    font-weight: bold;
    color: var(--white);
    z-index: 1000;
}

main {
    position: relative;
}

.btn {
    all: unset;
    letter-spacing: 0%;
    font-weight: 600;
    transition: all 0.15s linear;
    cursor: pointer;

    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

    border-radius: 10px;
}

.btn:hover {
    transform: scale(1.05);
}

.btn:active {
    transform: scale(0.9);
}

.btn--sm {
    font-size: 0.875em;
    line-height: 1.25em;
    padding: 0.625em 1em;
}

.btn--md {
    font-size: 1em;
    line-height: 1.5em;
    padding: 0.625em 1.125em;   
}

.btn--lg {
    font-size: 1em;
    line-height: 1.5em;
    padding: 0.75em 1.25em;
}

.btn--gold {
    border: 1px solid #a55d07;
    background-image: linear-gradient(
        160deg,
        #a54e07,
        #b47e11,
        #fef1a2,
        #bc881b,
        #a54e07
    );
    color: rgb(120, 50, 5);
}

.btn--gold:hover {
    background-color: #f8eb4c;
    background-size: 120%;

    border: 1px solid rgba(165, 93, 7, 0.6);
    color: rgba(120, 50, 5, 0.8);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23), inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgb(187, 163, 68);
}

.btn--gold:focus {
    outline: 3px solid rgba(165, 93, 7, 0.6);
}