.floating {

    position:absolute;
/*     bottom: 10px;
    right: 35px; */
    animation-name: floating;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
/*     margin-left: -30px;
    margin-top: 20px; */

}

@keyframes floating {
    from {
        transform: translate(0, 0px);
    }

    65% {
        transform: translate(0, 5px);
    }

    to {
        transform: translate(0, -0px);
    }
}

#game {
	z-index: 10;
	position: relative;
}

#wrongRotation {
	display: none;
	z-index: 15;
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1);
	touch-action: none;
}
#wrongRotation img {
	display: block;
	width: 30%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 40%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	touch-action: none;
}

#menu {
	position: fixed;
}

@font-face {
	font-family: 'gameFont';
	src: url('../assets/fnt/gamefont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

