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-top: 60px;
    margin: auto;
    width: 50%;
}

.game_logo { width: 100%; }

.score {
    display: flex;
    margin-top: 140px;
    text-align: center;
    
    font-family: 'Press Start 2P', monospace;
    background-image: -webkit-linear-gradient(#ffffff 0%, #d6d9e0 38%, #12151b 46%, #12151b 48%, #12151b 50%, #343f4d 58%, #343f4d 100%);
    -webkit-filter: drop-shadow(4px 8px 2px #000000);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    justify-content: center;
    font-size: 10em;
}

.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);
}
