
#oiia {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

#oiiaImg {
    width: 150px;
    height: auto;
    display: block;
}

#baby {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#babyImg {
    width: 150px;
    height: auto;
    display: block;
}

footer {
    margin: auto;
    width: 50%;
    padding: 2.5% 0;
}

.blinkies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 10px 0;
}

.blinkImgs {
    max-width: 100%;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 5px;
}

#copyright {
    background-color: rgba(128, 128, 128, 0.2);
    font-size: 15px;
    text-align: center;
    color: rgb(128, 128, 128);
    margin: 0;
}

#keygen-player {
    width: auto;
    background-color: #000000;
    border: 1px solid rgb(255, 0, 0);
    padding: 10px;
    font-family: 'Press Start 2P', cursive;
    color: rgb(255, 0, 0);
    text-align: center;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    display: block;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.pixel-btn {
    background-color: rgb(136, 0, 0);
    color: rgb(255, 0, 0);
    border: 2px solid rgb(255, 0, 0);
    padding: 5px 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 2px 2px 0px rgb(85, 0, 0);
    transition: all 0.05s linear;
}

.pixel-btn:active {
    background-color: rgb(255, 0, 0);
    color: rgb(136, 0, 0);
    box-shadow: none;
    transform: translate(2px, 2px);
}

.pixel-progress-bg {
    flex-grow: 1;
    height: 10px;
    background-color: #111111;
    border: 1px solid rgb(255, 0, 0);
    overflow: hidden;
    position: relative;
}

.pixel-progress-fill {
    height: 100%;
    width: 0%;
    background-color: rgb(255, 0, 0);
    transition: width 0.1s linear;
}

.bar-time-container {
    justify-content: space-between;
}

.pixel-text {
    font-size: 12px;
    color: rgb(255, 255, 255);
}

.song-info {
    margin-top: 15px;
    border-top: 1px dashed rgb(255, 0, 0);
    padding-top: 10px;
}


@media (max-width: 1000px) {

    #keygen-player {
        display: none !important;
    }

    #baby {
        display: none;
    }

    #oiia {
        display: none;
    }

    footer {
        width: 100%;
        margin: 0;
        padding: 10px 0;
    }

    #copyright {
        font-size: 14px;
        margin: 0;
        padding: 0 10px;
    }

    
    #blinkies {
        justify-content: center;
        align-items: center;
    }
}