body {
    -webkit-user-select: none; /* Disable text selection on iOS */
    -webkit-touch-callout: none; /* Disable callout menu on iOS */
    user-select: none; /* Disable text selection for other browsers */
    touch-action: none; /* Disable default touch actions */
}

.StartGame {
    position: absolute;
    top: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 9999;
    font-size: 10vw;
    background-color: rgba(0,0,0, 0.2);
    color: white;
    cursor: pointer;
    border-radius: 10px;
    padding: 0px 1vw;
}