.deathMessage
{
    text-align: center;
    font-size: xxx-large;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 200ms ease-in-out;
    z-index: 10;
    color: white;
    width: 500px;
    max-width: 80%;
}

.deathMessage.active
{
    transform: translate(-50%, -50%) scale(1);
}

#overlay
{
    position: fixed;
    opacity: 0;
    transition: 200ms ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
}
  
#overlay.active
{
    opacity: 1;
    pointer-events: all;
}

.turnIndicator
{
    text-align: center;

}

/* https://stackoverflow.com/questions/6921792/how-to-draw-circle-in-html-page */
.instaDrawIndicator
{
    width: 50px;
    height: 50px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: green;
    display: inline-block;
}