
body {
    background-color: #0e0e0e;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
	cursor: url(assets/spaceship.png), auto;
}

@keyframes audio-wave {
    0% {
        height: 6px;
        transform: translateY(0px);
        background: #eeff00;
    }

    25% {
        height: 40px;
        transform: translateY(-5px) scaleY(1.7);
        background: #ed509e;
    }

    50% {
        height: 6px;
        transform: translateY(0px);
        background: #9c73f8;
    }

    100% {
        height: 6px;
        transform: translateY(0px);
        background: #0fccce;
    }
}

.sound-wave {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    width: 3.75rem;
    height: 2.5rem;
}

.sound-wave div {
    height: 2.5rem;
    display: block;
    width: 0.6rem;
    height: 0.4rem;
    border-radius: 0.5rem;
    background: rgb(251, 255, 0);
    animation: audio-wave 2.2s infinite ease-in-out;
}

.sound-wave div:nth-child(2) {
    left: 11px;
    animation-delay: 0.2s;
}

.sound-wave div:nth-child(3) {
    left: 22px;
    animation-delay: 0.4s;
}

.sound-wave div:nth-child(4) {
    left: 33px;
    animation-delay: 0.6s;
}

.sound-wave div:nth-child(5) {
    left: 44px;
    animation-delay: 0.8s;
}

.sound-wave div:nth-child(5) {
    left: 55px;
    animation-delay: 1s;
}