#btnCoinCell {
    animation: 
        stretch 1s infinite paused
}

#cell1Up, #cell2Up {
    animation: 
        stretch .25s infinite paused
}


@keyframes stretch {
    0% {
        transform: scale(.95);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(.95);
    }
}

body {
    background-color: beige;
}

.controlPanel {
    position: absolute;
    right: 0%;
    z-index: 100;
    opacity: 0;
}

.volumeButton {
    width: 50px;
    height: auto;
    border: 20px;
}

.yellowButton {
    width: 126px;
    height: 126px;
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    background-image: url("../img/btnyellow-up.png");
}

.yellowButtonFocus {
    background-image: url("../img/btnyellow-down.png");
}

.yellowButtonFocus {
    background-image: url("../img/btnyellow-down.png");
}

.buttonLabel {
    text-align: center;
    color: yellow;
    font-family: Joystix;
    font-size: x-large;
    text-shadow: 2px 2px #000000;
}

.mainTable {
    width: 100%;
}

.cell {
    padding: 5px;
    padding-bottom: 10px;
    text-align: center;
}
