#logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px; /* Adjust the size as needed */
    height: 50px; /* Adjust the size as needed */
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: black;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

#controls {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

#controls button {
    margin: 5px;
    padding: 10px;
    font-size: 16px;
    background-color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#container {
    width: 100%;
    height: 100%;
}

#visualizer {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bar {
    width: 5px;
    height: 100%;
    background: white;
    margin: 0 1px;
}

#player {
    width: 0;
    height: 0;
    display: none;
}