body {
    background-color: black;
    color: green;
    font-family: monospace;
    overflow: hidden;
    margin: 0;
}
#cli-container {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
}
#cli-text {
    white-space: pre;
    overflow: hidden;
    border-right: 2px solid green;
    padding-right: 5px;
    font-size: large;
}
#music-player {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    border: 2px solid green;
}

#song-name {
    font-weight: bold;
    color: white;
    font-size: 1.2em;
    margin-bottom: 10px;
    text-align: center;
}

#audio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

#play-pause-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: black;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    margin-right: 22px;
}

#play-pause-button:hover {
    background-color: transparent;
    border: 2px solid green;
    color: white;
}

#volume-control {
    width: 100px;
    background-color: black;
    border-radius: 50px;
    cursor: pointer;
}

#volume-control:hover {
    background-color: green;
}
#song-link{
    text-align: center;
}