*{

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


.player{

    position: relative;
    width: 300px;
    height: 455px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 20px 0 50px 80px rgba(red, green, blue, 0.377);
    border-radius: 10% 10% 5% 5%;

}
.player .img{

    position: relative;
    width: 100%;
    height: 400px;

}

.player .img img{

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10% 10% 0 0;

}