@font-face {
    font-family: Brandon-Grotesque-Bold;
    src: url("/public/fonts/BrandonGrotesque-Bold.otf");
}

@font-face {
    font-family: Modesto-Condensed-Bold;
    src: url("/public/fonts/modesto-condensed-bold.ttf");
}

@font-face {
    font-family: Modesto-Expanded;
    src: url("/public/fonts/modesto-expanded.otf");
}


html {
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    font-size: 1.3vw;
    text-align: center;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    display: flex;
    box-sizing: border-box;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 750px;
    min-height: 100vh;
    font-family: 'Trebuchet MS', sans-serif;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    width: 100%;
}

* {
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

* {
    -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 {
    text-decoration: none;
}

input[type="file"] {
    display: none;
}

.hidden {
    display: none !important;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}


@media only screen and (min-width: 750px) {
    html {
        font-size: 9.74px;
    }
}