/* styles.css */
/* General body and canvas styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Splash screen styles */
#splashScreen {
    display: flex; /* Flex vs none*/
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    min-width: 200px;
    width: auto;
    background-color: white;
    color: black;
    font-size: 16px;
    font-family: -apple-system, sans-serif;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border: 2px solid black;
    border-radius: 10px;
    padding: 20px;
}

button {
    margin-top: 5px;
    margin-bottom: 15px;
    padding: 0.3rem 20px;
    font-size: 16px;
    color: black;
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.25s;
}

button:hover {
    background-color: #f0f0f0;
    border-color: #999;
}