body {
    background-color: rgba(30, 30, 30, 0.12);
}

#wheelOfExpertise {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 4px;
}

#wheel {
    display: block;
    border-radius: 50%;
    outline: 4px solid gray;
}

#spin {
    font: italic bold 1.8em/0 'Dancing Script', cursive;
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    height: 30%;
    margin: -15%;
    background: #fff;
    color: #0e4467;
    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;
}
