body { background-color: #000000; }

.fullscreen_bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen_bg_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.middle {
    display: block;
    margin: auto;
    margin-top: 80px;
    width: 50%;
}

.game_logo {
    width: 100%;
    -webkit-filter: drop-shadow(0px 0px 32px #0059ff);
    filter: drop-shadow(0px 0px 32px #0059ff);
}

.score {
    display: flex;
    margin-top: 120px;
    margin-left: 20px;
    text-align: center;
    font-family: 'Press Start 2P', monospace;
    text-shadow: 0px 0px 32px #0059ff;
    -webkit-text-stroke: 4px #ffffff;
    justify-content: center;
    font-size: 10em;
    color: #00ffff;
}

.stc_arcade_logo {
    position: absolute;
    bottom: 20px;
    right: 60px;
    width: 20%;
}

.float { animation: float 6s ease-in-out infinite; }

@keyframes float {
	0% { transform: translatey(0px); }
	50% { transform: translatey(30px); }
	100% { transform: translatey(0px); }
}

.shadowed {
    -webkit-filter: drop-shadow(6px 8px #473144);
    filter: drop-shadow(6px 8px #473144);
}
