.playground {
    position: relative;
    /*border: 5px solid blue;*/
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.betstatement.Left {
    position: absolute;
    left: 0;
}

.betstatement.Right {
    position: absolute;
    right: 0;
}

.betstatement.Top {
    position: absolute;
    top: 5px;
}

.betstatement.Main {
    position: absolute;
    /* border: 5px solid green; */
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    z-index: 1;
}
.gameproperties {
    position: absolute;
    top: 0;
    left: 0;
}

.gamepoints {
    position: absolute;
    top: 0;
    right: 0;
    justify-items: right;
}

 .blinking{
    animation: blinker 2s linear infinite;
 }

@keyframes blinker {
  50% {
    opacity: 0;
  }
}