body {
    background-image: url(../images/game.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

#messages {
    text-align: center;
    text-shadow: 2px 2px 4px #000000;
    margin-top: 140px;
     font-size: 28px;
    font-family: impact;
    color: #B81138FF;
}

.container {
    margin: 0 auto;
    width: 660px;
    height: 200px;
    text-align: center;
    margin-top: 50px;
}

#slot1,
#slot2,
#slot3 {
    width: 180px;
    padding: 10px;
}

.slot-wrapper {
    border: 1px solid #000000;
}

#images {
    width: 200px;
    margin: auto;
    padding: 10px;
}

h1 {
    text-align: center;
    font-family: impact;
    color: #0aff00;
    font-size: 50px;
    text-shadow: 2px 2px 4px #000000;
}

.bet-group {
    text-align: center;
    padding-top: 15px;
    color: white;
    font-family: helvetica;
}

#remainingCredits {
    display: inline-block;
    margin: 1px 1px 1px 1px;
    font-size: 20px;
    text-shadow: 2px 2px 4px #000000;
    margin-top: 20px;
    width: 100px;
}

#display {
   /* float: right;*/
   /* margin-right: 570px;*/
    margin-top -20px;
    color: white;
    font-family: impact;
    display: inline-block;
    text-shadow: 2px 2px 4px #000000;
    margin: 1px 1px 1px 1px;
}

#options{

    margin: 0 auto;
    background-color: rgba(120, 120, 120, 0.5);
    width: 300px;
    font-size: 24px;
    color: white;
    text-shadow:
    -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    text-align: center;
    padding: 15px;
    border-radius: 5%;
    bottom: 0;
    margin-top: 20px;
}

#spinBtn {
    background: #565F5F;
    background-image: -webkit-linear-gradient(top, #565F5F; #D0D5DC);
    background-image: -moz-linear-gradient(top, #565F5F; #D0D5DC);
    background-image: -ms-linear-gradient(top, #565F5F; #D0D5DC);
    background-image: -o-linear-gradient(top, #565F5F; #D0D5DC);
    background-image: linear-gradient(to bottom, #565F5F; #D0D5DC);
    -webkit-border-radius: 5;
    -moz-border-radius: 5;
    border-radius: 5px;
    font-family: Arial;
    color: #ffffff;
    font-size: 20px;
    padding: 10px 50px 10px 50px;
    text-decoration: none;
    margin: 5px 0px 0px 5px;
}

#spinBtn:hover{
    background: #61696e;
    background-image: -webkit-linear-gradient(top, #61696e, #8f8f8f);
    background-image: -moz-linear-gradient(top, #61696e, #8f8f8f);
    background-image: -ms-linear-gradient(top, #61696e, #8f8f8f);
    background-image: -o-linear-gradient(top, #61696e, #8f8f8f);
    background-image: linear-gradient(to bottom, #61696e, #8f8f8f);
    text-decoration: none;
}

#cashOut {
    background: #565F5F;
    background-image: -webkit-linear-gradient(top, #565F5F; #D0D5DC);
    background-image: -moz-linear-gradient(top, #565F5F; #D0D5DC);
    background-image: -ms-linear-gradient(top, #565F5F; #D0D5DC);
    background-image: -o-linear-gradient(top, #565F5F; #D0D5DC);
    background-image: linear-gradient(to bottom, #565F5F; #D0D5DC);
    -webkit-border-radius: 5;
    -moz-border-radius: 5;
    border-radius: 5px;
    font-family: Arial;
    color: #ffffff;
    font-size: 12px;
    padding: 8px 48px 8px 48px;
    text-decoration: none;

}

#cashOut:hover{
    background: #61696e;
    background-image: -webkit-linear-gradient(top, #61696e, #8f8f8f);
    background-image: -moz-linear-gradient(top, #61696e, #8f8f8f);
    background-image: -ms-linear-gradient(top, #61696e, #8f8f8f);
    background-image: -o-linear-gradient(top, #61696e, #8f8f8f);
    background-image: linear-gradient(to bottom, #61696e, #8f8f8f);
    text-decoration: none;

}

#result {
    font-size: 28px;
    font-weight: bold;
    height: 22px;
    text-shadow: 2px 2px 4px #000000;
    margin: 1px 1px 1px 1px;
}

#messages {
   
}

#dropDownList {

    
    font-size: 20px;
    font-family: impact;
    display: inline-block;
    margin: 1px 1px 1px 1px;
}

#buy {
   /* margin: 10px 10px 10px 275px;*/
    color: white;
    font-family: impact;
}

.credits {
    font-size: 15px;
    margin-top: 20px;
}

 #messages{

   -webkit-animation: scale 2s ease-out;
   -moz-animation: scale 2s ease-out;

 }

 @-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.5);
    }
}