html {
    font-size: 0.520833333vw;
    line-height: 1;

    @media (max-width: 768px) {
        font-size: 1.302083333333333vw;
    }

    @media (max-width: 420px) {
        font-size: 2.380952380952381vw;
    }
}

body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: system-ui;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    margin: 0;
    text-align: center;
    overflow-y: hidden;
}

.container {
    width: 60rem;
    padding: 4rem;
    background-color: #2a2a2a;
    border-radius: 2rem;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.5);
}

.logo {
    max-width: 15rem;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 300;
}
p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 300;
    text-align: left;
}
a {
    -webkit-text-fill-color: darkcyan;
}

.links {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 300;
}

-webkit-scrollbar {
    width: 200px;
    min-width: 200px;
}
.player {
}

#playPauseButton {
    width: 60px;
    height: 60px;
    background-color: #4caf50;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    outline: none;
}

#playPauseButton:hover {
    background-color: #45a049;
}

#playPauseButton::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 55%; /* Slightly offset for better centering */
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #fff; /* Play icon */
    box-sizing: border-box;
}

#playPauseButton.playing::before {
    width: 20px; /* Pause icon width */
    height: 20px; /* Pause icon height */
    border-top: none;
    border-bottom: none;
    border-left: 7px solid #fff; /* Left bar */
    border-right: 7px solid #fff; /* Right bar */
    left: 50%;
}

.song-info {
    font-size: 1.1em;
    color: #b0b0b0;
}

#songTitle {
    font-weight: bold;
    color: #e0e0e0;
}

#status {
    font-style: italic;
}
