html, body {
	padding: 0;
	margin: 0;
	overflow: hidden;
	
	background: #000000;
	color: white;
}

html, body, canvas {
	touch-action: none;
	touch-action-delay: none;
}

#notSupportedWrap {
	margin: 2em auto 1em auto;
	width: 75%;
	max-width: 45em;
	border: 2px solid #aaa;
	border-radius: 1em;
	padding: 2em;
	background-color: #f0f0f0;
	font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
	color: black;
}

#notSupportedTitle {
	font-size: 1.8em;
}

.notSupportedMessage {
	font-size: 1.2em;
}

.notSupportedMessage em {
	color: #888;
}
#rotate-message{
    position:fixed;
    inset:0;
    background:#000;
    display:none;
    justify-content:center;
    align-items:center;
    text-align:center;
    z-index:999999;
    color:#fff;
    font-family:Arial,sans-serif;
}

.rotate-content{
    padding:20px;
}

.rotate-icon{
    font-size:60px;
    margin-bottom:20px;
    animation:rotateIcon 1.5s infinite;
}

@keyframes rotateIcon{
    0%{transform:rotate(0deg);}
    50%{transform:rotate(90deg);}
    100%{transform:rotate(0deg);}
}

@media (orientation:portrait){
    #rotate-message{
        display:flex;
    }

    canvas{
        display:none !important;
    }
}

@media (orientation:landscape){
    #rotate-message{
        display:none;
    }

    canvas{
        display:block !important;
    }
}



