/* --------------------------------------------- */
/* ----------------- Variables ----------------- */

@font-face {
    font-family: 'Fishmonger';
    src: url("/public/fonts/Fishmonger.otf");
}

@font-face {
    font-family: 'Fishmonger CR';
    src: url("/public/fonts/Fishmonger-CR.otf");
}

@font-face {
    font-family: 'Fishmonger Radegast';
    src: url("/public/fonts/Fishmonger-Radegast.otf");
}

:root {
    --clr-white: #ffffff;
    --clr-text: #f4f4f4;
    --clr-black: #000000;
    --clr-gambrinus: #8F1A2C;
    --clr-kozel: #372817;
    --clr-radegast: #28463B;
}

/* ----------------------------------------- */
/* ----------------- General ----------------- */

html {
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden;
}

body {
    display: flex;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    font-family: 'Fishmonger CR', sans-serif;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

* {
    box-sizing: border-box;

    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;

    -webkit-tap-highlight-color: transparent;
}

a {
    color: var(--clr-white);
    text-decoration: none;
}

.hidden {
    display: none !important;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}


/* ----------------------------------------- */
/* ----------------- Media ----------------- */

/* ----------------- Desktop 1728px ----------------- */
.tablet,
.mobile {
    display: none;
}

:root {
    font-size: 0.579vw;
}


/* ----------------- Tablet 1024px ----------------- */
@media only screen and (max-width: 1400px) {
    .desktop,
    .mobile {
        display: none;
    }

    .tablet {
        display: block;
    }

    :root {
        font-size: 0.977vw;
    }
}


/* ----------------- Mobile 390px ----------------- */
@media only screen and (max-width: 650px) {
    .desktop,
    .tablet {
        display: none;
    }

    .mobile {
        display: block;
    }

    :root {
        font-size: 2.564vw;
    }
}


/* --------------------------------------------- */
/* ----------------- Scrollbar ----------------- */

/* width */
::-webkit-scrollbar {
    width: 1vw;
    background-color: #000000;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: #000000;
    border-radius: 0.5vw;
}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 0.5vw;
    background-color: #151515;
    box-shadow:0px 0px 0.3rem 0.2rem #555555 inset;
}

