body {
    top: 0;
    left: 0;
    background-image: url('./images/pattern-background-desktop.svg');
    background-size: auto;
    background-repeat: no-repeat;
    box-sizing: border-box;
    background-color: #e7edff;
    margin: 7% 43%;
}

.container {
    background-color: #fff;
    width: 300px;
    height: 560px;
    border-radius: 5%;
}

.container img {
    width: 100%;
    border-radius: 5% 5% 0 0;
}

/* informacion */

.info {
    padding: 20px;
    text-align: center;
}

/* pista */

.music {
    display: flex;
    background-color: #f2f2f2;
    width: 80%;
    height: 15%;
    border-radius: 5%;
    justify-content: space-between;
    padding: 15px;
    margin: 10px 10px;
}

.music img {
    width: 40px;
    height: 40%;
    align-self: center;
    margin: 0;
}

.tema {
    line-height: 20px;
    font-weight: 600;
}

.costo {
    font-weight: 100;
    color: #7b7b7be1;
}

.direc {
    align-self: center;
    margin-left: 20px;
}

/* botones */

.btn {
    background-color: #1E1FCD;
    color: #fff;
    width: 90%;
    border: none;
    padding: 10px;
    border-radius: 5%;
    box-shadow: 0 0 5px #1E1FCD;
    margin: 20px;
}

.btn2 {
    background-color: transparent;
    color: #737385;
    width: 90%;
    border: none;
    padding: 10px;

}

.btn, .btn2:hover {
    cursor: pointer;
}