

section.music {
    $b-r: 15px;

    margin: 300px;
    width: 420px;
    height: 135px;
    border-radius: $b-r;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 
                0 2px 10px 0 rgba(0, 0, 0, 0.12);
    
    display: flex;
    color: gold;
    font-size: 18px;
    background: rgb(61, 46, 38);

    .music-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        &>div {
            width: 100%;
            text-align: left;
            padding-left: 20px;
        }

        &>div:first-child {
            font-size: 15px;
            
            img {
                width: 22px;
            }
        }

        &>div:last-child {
            width: unset;
        }
    }


    .music-ic {
        display: flex;
        width: unset;
        
        &>span {
            flex-grow: 1;
            width: 25%;
            margin-left: 10px;
            margin-right: 10px;
            &:hover {
                cursor: pointer;
            }

            &>img {
                width: 100%;
            }
        }
    }

    .music-cover {
        width: fit-content;
        height: 100%;
        border-top-right-radius: $b-r;
        border-bottom-right-radius: $b-r;

        img {
            height: 100%;
            border-top-right-radius: $b-r;
            border-bottom-right-radius: $b-r;
        }
    }
}