/* global vars */
:root {
    --BGcolour: black;
    --TextColour: white;
}

body {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    overflow: hidden;
    user-select: none;
    background-color: var(--BGcolour);
    color: var(--TextColour);
    cursor: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h2{
    padding: 0;
    margin: 2px;
    font-weight: 650;
    font-size: 25px;
    mix-blend-mode: difference;
}

.spinner{
    font-family: Segoe Boot Semilight;
    font-size: 50px;
    margin-bottom: 15px;
    mix-blend-mode: difference;
}

.fullscreen-hint {
    position: fixed !important;
    top: 10px !important;
    right: 10px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #000 !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    pointer-events: none !important;
    display: block !important;
}