body {
    background-color: green;
    font-family: Raleway, "Century Gothic", sans-serif;
 
}

.divHolder {
      display: flex;
    background-color: purple;
    width: 50%;
    margin: auto;
}

.gameInfo{
    border-radius: 25px;
    padding: 20px;
    margin: auto;
    width: 50%;
    height: 250px;
    justify-content: center;
    text-align: center;
    background-color: grey;
    opacity: 90%;
}

#title{
    font-family: "Times New Roman", Times, serif;
    margin: 0;
}

#explination{
    font-family: "Lucida Console", "Courier New", monospace;
    margin: 20;
    padding-left: 30px;
    padding-right: 30px;
}

.userInfo{
    background-color: aqua;
    border-radius: 25px;
    padding: 20px;
    margin: auto;
    width: 300px;
    height: 300px;
    justify-content: center;
    text-align: center;
}

#rollButton {
    width:280px;
    height: 100px;
    background: #900;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    line-height: 100px;
    font-size: 24px;
    font-weight: 700px;
    cursor: pointer;
}

#rollButton:hover {
    background: #f00;
}


#diceContainer{
    width: 200px;
    height: 300px;
    
}

#dicediv1, #dicediv2 {
    background-color: yellow;
    width: 125px;
    height: 125px;
    float: left;
    margin: 5px;
    background-image: url(../images/dice.png);
    text-indent: -9999px;
}
    .value1 {
        background-position: 0 center;
    }

    .value2 {
        background-position: -125px center;
    }

    .value3 {
        background-position: -250px center;
    }

    .value4 {
        background-position: -375px center;
    }

    .value5 {
        background-position: -500px center;
    }
    .value6 {
        background-position: -625px center;
    }

