#wheel {
    width: 40vw; /* 40% of the viewport width */
    height: 40vw; /* 40% of the viewport width */
    border: 1px solid black;
    border-radius: 50%;
    background-color: goldenrod;
    display: flex;
    justify-content: center;
    align-items: center;
} 
#wheel::after {
    content: "";
    width: 2vw; /* 2% of the viewport width */
    height: 2vw; /* 2% of the viewport width */
    background-color: rgb(51, 51, 51);
    border-radius: 50%;
}

button {
    margin-top: 10px;
}
#pointer {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid rgb(255, 255, 255); /* Adjust the size and color of the pointer */

}
#wheelContainer {
    position: relative;
    display: flex;
    margin-top: 50px; /* Adjust the margin-top value to offset the elements */
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.item {
    position: absolute;
    /*top: 50%;
    left: 50%;
    /*transform: translate(-50%, -50%);*/
}
#canvasContainer {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
  