body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: url('./big_background.jpg') no-repeat center center fixed; /* Replace with your background image path */
    background-size: cover; /* Ensure the image covers the full page while maintaining aspect ratio */
}

.wheel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 85vmin;
    height: 85vmin;
}

canvas {
    border: 5px solid #000;
    border-radius: 50%;
    background-color: #fff;
    width: 100%;
    height: 100%;
}

