* {
    padding: 0;
    margin: 0;
}

body {
    overflow: hidden;
}

@font-face {
    font-family: "CeraRoundPro";
    src: url(/CeraRoundPro.otf);
}

main {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #333;
    font-family: CeraRoundPro, sans-serif;
    font-weight: bold;
}

#player {
    display: none;
}

.custom-audio-player {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.controls {
    width: 360px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #fff;
}

#playPauseBtn {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: none;
    font-size: 100px;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0);
    transition: box-shadow 0.2s ease;
}

#volumeBtn {
    font-size: 24px;
    width: 30px;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: #555;
    height: 5px;
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

#volumeBar {
    -webkit-appearance: none;
    width: 50px;
    appearance: none;
    background: #555;
    height: 5px;
    border-radius: 5px;
    outline: none;
}

#currentTime,
#duration {
    font-size: 14px;
    color: #fff;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
    list-style-type: none;
    font-size: 24px;
}

.menu a {
    color: #fff;
}