body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    height: 95vh;
}

.container {
    display: flex;
}

canvas {
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    margin-right: 20px;
}

#score,
#level {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: 20px;
}

#splash-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#splash-screen h1 {
    color: white;
    font-size: 3em;
    margin-bottom: 0;
}

#splash-screen p {
    width: 50%;
    color: white;
    font-size: 1.2em;
    line-height: 1.4;
}

#start-button {
    padding: 1em;
    font-size: 2em;
    background-color: #3c3;
    border: none;
    border-radius: 5px;
    color: white;
}