.wrap {
    background: #0e1736;
    background-image: url("/assets/img/bg_game.jpg");
    background-size: cover;
    height: 620px;
    width: 100%;
    position: relative;
    cursor: crosshair;
    overflow: hidden;
}

.target-hider {
    background: #e35052;
    height: 120px;
    width: 100%;
    margin-top: 500px;
    position: absolute;
    z-index: 10;
    color: white;
    padding: 35px 0;
    font-weight: bold;
    font-size: 35px;
    text-align: center;
}

.target-holder {
    background: transparent;
    height: 120px;
    width: 100%;
    margin-top: 500px;
    position: absolute;
    display: flex;
    z-index: 10;
    justify-content: space-between;
}

.target {
    width: 200px;
}

@keyframes pop-up {
    10% {
        margin-top: -500px;
    }
    50% {
        margin-top: -220px;
    }
    100% {
        margin-top: 0;
    }
}

@keyframes pop-right {
    10% {
        margin-left: 15%;
    }
    50% {
        margin-left: 40%;
    }
    100% {
        margin-left: 80%;
    }
}

.tenth-circle {
    background: transparent;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 232323232;
    color: black;
    font-weight: bold;
    font-size: 16px;
    padding: 30px;
    max-height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    text-align: center;
}

.tenth-circle .bg {
    position: absolute;
    display: block;
    width: 230px;
    height: 200px;
    content: '';
    background-image: url(/assets/img/ufo1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}

.game-over {
    position: absolute;
    top: 40%;
    display: none;
    font-size: 36px;
    font-family: monospace;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 40px;
    width: 100%;
    text-align: center;
}

.game-over span {
    font-size: 24px;
}

.game-over.show {
    display: block;
}

#timer {
    color: white;
    padding: 5px;
    font-weight: bold;
}