#wheelOfFortune {
    display: none;
    position: absolute;
    overflow: hidden;
    background: var(--mainColor);
    z-index: 10;
    top: 25%;
    left: 40%;
    padding: 20px;
    border-radius: 35px;
    filter: drop-shadow(5px 2px 3px #333);
}

#wheel {
    display: block;
}

#value {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    background: #3AdA2A;
    padding: 5px;
    border-radius: 5px;
}

#spin {
    font: 1.5em/0 sans-serif;
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2A22a3;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    height: 30%;
    margin: -15%;
    background: #fff;
    color: #fff;
    box-shadow: 0 0 0 8px currentColor, 0 0px 15px 5px rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transition: 0.8s;
}

#spin::after {
    content: '';
    position: absolute;
    top: -17px;
    border: 10px solid transparent;
    border-bottom-color: currentColor;
    border-top: none;
}