/*
    styling for when playing
*/

.game-ui-nitro {
    position: absolute;
    right: 0;
    top: 50%;

    transform: translate(0,-50%);
    padding: 4px;
    padding-right: 0;

    border: 4px solid #484b4f;
    border-right: none;

    width: 40px;
    height: 400px;

    display: flex;
    flex-direction: column-reverse;
}

.game-ui-nitro-bar {
    width: 100%;
    background: #d66b06;
}

.game-ui-wave {
    position: absolute;
    top: 0;
    left: 50%;

    width: 740px;
    height: 50px;

    transform: translate(-50%,0);

    border: 4px solid #484848;
    border-top: none;

    padding: 4px;
    padding-top: 0;

}

.game-ui-wave-bar {
    height: 100%;
    background: #ff1e1e;
}

#game-ui-wave-number {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);
    color: #fff;
}

.game-ui-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

}
.game-ui-title > h1 {
    font-size: 60px;
    color: #fff;

    opacity: 0;
    transform: scale(0.2);

    transition: opacity 0.3s ease, transform 3s ease;
}

.game-ui-title-animate-in > h1 {
    opacity: 1;
    transform: scale(1);
}
.game-ui-title-animate-out > h1 {
    opacity: 0!important;
}
