body {
  font-family: Arial, Helvetica, sans-serif;
}

.player {
    margin-top: 30px;
}

div.score-container {
    font-size: 30px;
}

.tile-parent {
    display: inline-block;
    height: 150px;
    width: 90px;
    margin: 15px;
}

.tile {
    background-color: #B22222;
    padding: 15px;
    border: 2px solid #000000; 
    border-radius: 15%;
    display: block;
    height: 75%;
    text-align: center;
    font-size: 40px;
}

div.closed-tile {
    transform: skewX(25deg) rotateX(45deg);
    transform-origin: bottom center;
    background-image: linear-gradient(to bottom right, #DC143C,#B22222);
}

div.dice-parent {
    margin: 10px;
}

div.dice {
    background-color: #ffffff;
    color: #000000;
    height: 75px;
    width: 75px;
    border: 2px solid #cdcdcd;
    border-radius: 10%;
    text-align: center;
    font-size: 50px;
    display: inline-block;
    margin: 10px;
}

.tile-locked {
    pointer-events: none;
    opacity: .7;
}

.new-game {
    pointer-events: none;
}

div.dice.dice-rolling {
    background-color: #eee;
}

div.messages-container{
    width: 100%;
    height: 30px;
}

div.messages, div.banner {
    font-weight: bold;
    font-size: 2em;
    color: #0000ff;
    display: none;
    /* text-align: center; */
}

.roll {
    width: 100px;
    height: 100px;
    border-radius: 35px;
    margin-top: 20px;
    margin-left: 60px;
    font-size: 2em;
    font-weight: bold;
    background-color: #2608e6;
    color: #ffffff;
}