* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0f0f0;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: linear-gradient(to bottom right, #2a2a2a, #1a1a1a);
    color: #fff;
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.container {
    border: 4px solid #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 6px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden; /* Ensures the canvas stays within the rounded borders */
}

canvas {
    display: block;
    background: #000;
}

.info {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: #222;
    border-top: 2px solid #444;
    font-size: 1.2rem;
}

.info p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
