body {
    color: white;
    background: black;
    position: absolute;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    user-select: none;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
    text-decoration: none;
}

body .mobile-request {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1000;
    background: black;
    pointer-events: all;
    cursor: pointer;
    display: none;
    text-align: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
    vertical-align: middle;
    /* align-self: end; */
    flex-flow: column;
    align-content: center;
    align-items: center;
    justify-items: center;
    font-family: 'Courier New', Courier, monospace;
    justify-content: center;
}

body .mobile-request .logo-container {
    height: 8%;
    margin-bottom: 10%;
}

body .mobile-request .logo-container > img {
    height: 100%;
}

body .mobile-request .mobile-text {
    justify-content: center;
    color: white;
    z-index: 1001;
    display: none;
    font-size: 4vw;
    margin: 30px;
    /* user-select: none; */
    /* pointer-events: none; */
}

body .mobile-request.display {
    display: flex;
}

body .mobile-request .mobile-text.display {
    display: block;
}


@media only screen and (max-width: 768px) {
    body  {
        font-size: 1.7vw;
    }
}

@media only screen and (max-height: 768px) {
    body {
        font-size: 1.9vh;
    }
}