*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    color:#fff;
    font-family:Arial,sans-serif;

    display:flex;
    justify-content:center;
    align-items:center;

    min-height:100vh;
    text-align:center;
}

.container{
    width:90%;
    max-width:500px;
}

.dot{
    width:12px;
    height:12px;

    border-radius:50%;
    background:white;

    margin:0 auto 25px;
}

h1{
    letter-spacing:8px;
    margin-bottom:40px;
    font-weight:300;
}

.tracks{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:30px;
}

.track{
    background:none;
    border:1px solid #444;
    color:white;

    padding:12px;
    cursor:pointer;
}

.track:hover{
    border-color:white;
}

#playBtn{
    margin-bottom:20px;

    background:none;
    border:1px solid white;

    color:white;
    padding:12px 24px;

    cursor:pointer;
}

#nowPlaying{
    margin-bottom:30px;
    opacity:.7;
}

.quote{
    opacity:.5;
    font-size:.9rem;
    line-height:1.5;
}