body {
    text-align: center;
}

a:hover {
    text-decoration: none;
}

#gameDiv, canvas, video {
	width: 100% !important;
	height: 100% !important;
	color: #000000;
	position: absolute; top: 0; left: 0;
}
#gameDiv, canvas{
    touch-action: none;
}
#toast {
   position: absolute;

   -webkit-transition: opacity 0.5s;
   -moz-transition: opacity 0.5s;
   -o-transition: opacity 0.5s;
   transition: opacity 0.5s;

   opacity: 0;
   z-index: 1;
   display: none;
}

.background
{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#center-container
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    max-width: 75vh;
}

/* @media (orientation: portrait){
    #center-container
    {
        width: 100%;
        height: 100%;
    }
} */