@font-face {
    font-family: 'Akzidenz-Grotesk Pro';
    src: url("/public/fonts/Akzidenz-Grotesk Pro.otf");
}


/* Base width: 390px */
:root {
    font-size: 2.56vw;
}

html {
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    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;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    overflow-x: hidden;
    scroll-behavior: smooth;
    z-index: 10;
}

section {
    width: 100%;
}

* {
    position: relative;
    box-sizing: border-box;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: inherit;
}

.noselect,
.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 {
    text-decoration: none;
}

input[type="file"] {
    display: none;
}

.hidden {
    display: none !important;
}

.middle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}


@media only screen and (min-width: 750px) {
    :root {
        font-size: 19.2px;
    }
}