.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.digitext {
    color: aliceblue;
    background-color: black;
    border-radius: 10px;
    width: 300px;
    position: relative;
    left: 100px;
}

#machine {
    background-color: rgb(84, 158, 10);
    width: 500px;
    height: 650px;
    text-align: center;
    border-radius: 5%;
    border-color: black;
    border-style: solid;
    font-family: fantasy;
}

#joystick {
    position: absolute;
    top: 466px;
    left: 36px;
    background-color: brown;
    border-radius: 100%;
    border-color: black;
    border-radius: 100%;
    border-style: solid;
}

#knob {
    position: absolute;
    background-color: rgb(235, 231, 11);
    border-color: black;
    border-radius: 100%;
    border-style: solid;
}

#screenCanvas {
    border-radius: 5%;
    background-color: black;
}

#coinSlot {
    background-color: rgb(145, 144, 122);
    border-color: black;
    border-style: solid;
    width: 60px;
    height: 100px;
    border-radius: 10px;
    position: relative;
    left: 400px;
}

#coinSlot #shadow {
    background-color: rgb(34, 34, 32);
    border-color: black;
    border-style: solid;
    width: 60px;
    height: 100px;
    border-radius: 10px;
}

#coinSlot #hole {
    background-color: rgb(10, 10, 10);
    border-color: black;
    border-style: solid;
    width: 25px;
    height: 65px;
    border-radius: 10px;
    position: relative;
    top: 15px;
    left: 17px;
}

#insertCoinText {
    position: relative;
    bottom: 80px;
    left: 200px;
    width: 200px;
    border-radius: 10px;
    animation-name: example;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes example {
    0%   {background-color: red;}
    25%  {background-color: yellow;}
    50%  {background-color: blue;}
    75%  {background-color: green;}
    100% {background-color: red;}
  }