@font-face {
    font-family: 'ArialMT';
    src: url(./fonts/arialmt.woff2) format('woff2'), url(./fonts/arialmt.woff) format('woff');
}

@font-face {
    font-family: 'ArialBoldMT';
    src: url(./fonts/arialboldmt.woff2) format('woff2'), url(./fonts/arialboldmt.woff) format('woff');
}

@font-face {
    font-family: 'SansCondBold';
    src: url(./fonts/sanscondbold.woff2) format('woff2'), url(./fonts/sanscondbold.woff) format('woff');
}

input {
    -webkit-user-select: text;
}

body {
    margin: 0px;
    padding: 0px;
    background: rgb(40, 40, 40);
    font-family: Arial, sans-serif;
    font-size: 1.5em;
    user-select: none;
    overflow: hidden;
}

p {
    padding: 0;
    margin: 0;
}

iframe {
    border: none;
}

.App {
    text-align: center;
}

body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.App-logo {
    height: 40vmin;
    pointer-events: none;
}

.StartButton {
    width: 30px;
    height: 30px;
    background: green;
}

.EndButton {
    width: 30px;
    height: 30px;
    background: #ff0000;
}

@media (prefers-reduced-motion: no-preference) {
    .App-logo {
        animation: App-logo-spin infinite 20s linear;
    }
}

.App-header {
    background-color: #282c34;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: calc(10px + 2vmin);
    color: white;
}

.App-link {
    color: #61dafb;
}

@keyframes App-logo-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.Portal-off {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    /*margin: 0;*/
}

.Portal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.withActiveGin {
    display: none;
}

.ViewPort {
    max-width: 1650px;
    margin: 0 auto;
}

@media (max-width: 1650px) {
    .ViewPort {
        max-width: none;
        margin: 0;
    }
}