body {
    background-image: url(../img/sharon-mccutcheon-TMwHpCrU8D4-unsplash.jpg);
}

.shake{
    animation: shake 1s;
}

  @keyframes shake {
    0% { transform: translate(4px, 4px) rotate(0deg); }
    10% { transform: translate(-4px, -4px) rotate(-1deg); }
    20% { transform: translate(-7px, 0px) rotate(1deg); }
    30% { transform: translate(7px, 4px) rotate(0deg); }
    40% { transform: translate(4px, -4px) rotate(1deg); }
    50% { transform: translate(-4px, 4px) rotate(-1deg); }
    60% { transform: translate(-7px, 4px) rotate(0deg); }
    70% { transform: translate(7px, 4px) rotate(-1deg); }
    80% { transform: translate(-4px, -4px) rotate(1deg); }
    90% { transform: translate(4px, 4px) rotate(0deg); }
    100% { transform: translate(4px, -4px) rotate(-1deg); }
  }

#questionText {
    width: 350px;
    color: #6600cc;
    margin: auto;
}

#question {
    width: 298px;
    height: 38px;
}

#eightBallOuter {
    width: 350px;
    height: 350px;
    background-color: #000;
    border: 1px solid #000;
    border-radius: 50%;
}

#eightBallInner {
    width: 50%;
    height: 50%;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    margin: 25% auto;
}

#number8 {
    width: 174px;
    height: 174px;
    color: #000;
    font-size: 11em;
    margin: -55px auto;
}

#answers {  
    width: 174px;
    height: 174px;
    color: #0000ff;
    font-size: 20px;
    padding: 30px;
    margin: -100px auto;
}  

footer{
    font-size: 12px;
}

.link1 {
    color: #004d99;
}