body{

    margin:0;
    background:#111;
    color:white;
    font-family:sans-serif;

}

header{

    padding:20px;

}

#episodes{

    display:flex;
    flex-direction:column;
    gap:15px;
    padding:20px;

}

.episode{

    background:#222;
    border-radius:15px;
    padding:15px;
    display:flex;
    align-items:center;
    gap:15px;

}

.cover{

    width:70px;
    height:70px;
    border-radius:12px;
    background:#666;

}

.info{

    flex:1;

}

button{

    background:#7f00ff;
    color:white;
    border:none;
    border-radius:10px;
    padding:10px 16px;
    cursor:pointer;

}