.onepage {
    position: relative;
}

.bg-img, .bg-tint {
    width: 100%;
    height: 100%;
    position: absolute;
}

.bg-img {
    background-size: 105% auto !important;
    background-position: 50% 50% !important;
    z-index: 10;
    filter: blur(25px);
}

.bg-tint {
    background: rgba(0, 0, 0, 0.6);
    z-index: 11;
}

.listen-box {
    position: relative;
    top: 150px;
    z-index: 20;
}

.card {
    width: 600px;
    height: 300px;
    background: #9d9d9d12;
    border-radius: 12px;
    margin: 0 auto;
    text-align: center;
    border: 1px dashed #ffffff0f;
}

.card .header {
    padding: 5px;
}

.card .artists {
    font-size: 20px;
}

.card .album-img {
    position: relative;
    left: 0;
    right: 0;
    top: -30px;
    text-align: center;
}

.card .album-img .img {
    width: 200px;
    height: 200px;
    background-size: 100% 100% !important;
    margin: 0 auto;
    border-radius: 10px;
}

.list {
    margin: 0 auto;
    margin-top: 50px;
    width: 600px;
}

.list .row {
    position: relative;
    width: 100%;
    height: 70px;
    background: #9d9d9d12;
    border-radius: 12px;
    margin-top: 10px;
    cursor: pointer;
    border: 1px dashed #ffffff0f;
    box-sizing: content-box;
    transition: background 0.5s;
}

.list .row:hover {
    background: #9d9d9d26;
}

.list .row img:nth-of-type(1) {
    width: 70px;
    height: 70px;
    border-radius: 12px 0 0 12px;
}

.list .row img:nth-of-type(2) {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 19px;
}

.list .row span {
    margin-left: 25px;
    font-size: 20px;
}

.list .row * {
    display: inline-block;
    vertical-align: middle;
}