body {
    margin: 0;
    background: black;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* height: 100vh; */
    font-family: sans-serif !important;
}

.game__container {
    position: relative;
}

.game__header {
    display: none;
    flex-direction: row;
    position: absolute;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    width: 100%;
}

.game__score {
    margin: 1rem;
    color: white;
    font-weight: normal;
}

.game__start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100vh;
}

.game__title {
    z-index: 2;
    color: white;
    font-size: 3rem;
    cursor: default;
    font-family: 'VT323', monospace;
    font-weight: normal;
    margin: 0 0 .5rem 0;
    /* animation: levitate 3s ease-in infinite; */
    animation-delay: 1s;
}

.game__img {
    width: 10rem;
    animation: levitate 2s ease-in infinite;
}

@keyframes levitate {
    0% {
        transform: translate(0%, 0%);
    }
    50% {
        transform: translate(2%, 4%);
    }
    100% {
        transform: translate(0%, 0%);
    }
}

.game__start-btn {
    border: 1px solid white;
    color: white;
    padding: .5rem 2rem;
    margin-top: 2rem;
    border-radius: .5rem;
    background-color: black;
    background: black;
    cursor: pointer;
    transition: .3s;
}

.game__restart {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 100vh;
}

.game__over {
    z-index: 2;
    color: white;
    cursor: default;
    font-size: 3rem;
    font-family: 'VT323', monospace;
    font-weight: normal;
    margin: 0 0 .5rem 0;
}

.game__restart-btn {
    border: 1px solid white;
    color: white;
    padding: .5rem 2rem;
    margin-top: 2rem;
    border-radius: .5rem;
    background-color: black;
    background: black;
    cursor: pointer;
    transition: .3s;
}

.game__restart-btn:hover {
    background-color: white;
    color: black;
}

.game__start-btn:hover {
    background-color: white;
    color: black;
}

.game__endscore {
    position: absolute;
    z-index: 2;
    color: #aa79ff;
    cursor: default;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: normal;
    margin: 0;
}

.game__controls {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.game__controls-left {
    font-size: 3rem;
    margin: 0 .5rem;
    color: rgba(255, 255, 255, 0.226);
    width: 30%;
    text-align: start;
    font-weight: bold;
    border: none;
    background: none;
}

.game__controls-shoot {
    font-size: 3rem;
    margin: .5rem;
    color: rgba(255, 255, 255, 0.226);
    width: 30%;
    text-align: center;
    font-weight: bold;
    border: none;
    background: none;
}

.game__controls-right {
    font-size: 3rem;
    margin: 0 .5rem;
    color: rgba(255, 255, 255, 0.226);
    width: 30%;
    text-align: end;
    font-weight: bold;
    border: none;
    background: none;
}

.game__start-autoshoot {
    color: white;
    margin: 1rem;
}

.game__autoshoot {
    color: white;
    display: none;
    margin: 1rem;
}