body{
    background:linear-gradient(blue,black);
    height: 100vh;
    text-align: center;
}
header{
    font-size: 3em;
    font-family: papyrus, cursive;
    color: white;
    text-align: center;
}
#EightBall{
    background-image: url("images/magic8.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
    width: 800px;
    border: 5px outset navy;
    margin: 10px auto;

}
#answer{
    background-color: white;
    width: 255px;
    height: 255px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 165px;
    border-radius: 125px;
    text-align: center;
    line-height: 255px;
    vertical-align: middle;
    font-size: 2em;
    opacity: 1;
    transition: all 3s;
    background: radial-gradient(rgb(139, 193, 240), navy);
}
#answer.hidden{
    transform: rotate3d(1, 1, 1, 110deg);
    opacity: 0;
    background-color: navy;
}
#question{
    width: 50%;
    font-size: 1.5em;
    text-align: center;
}
button{
    font-size: 1.5em;
}