

.musicplay {
    margin:0 auto;
    color: #fff;
    border-radius: 1rem;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    /*background-color: #232328;*/
    background: rgb(71, 84, 135);
    background: linear-gradient(67deg, rgba(71, 84, 135, 1) 6%, rgba(50, 46, 128, 1) 29%, rgba(58, 75, 142, 1) 49%, rgba(50, 46, 128, 1) 75%, rgba(71, 84, 135, 1) 100%);
    -webkit-tap-highlight-color: transparent;
}

@media (max-width:760px) {
    .musicplay {
        width: 90%;
    }
}

.heading {
    color: #fff;
    text-align: center;
    margin:0 auto;
    text-shadow: 2px 2px 5px #2eb0cb;
    font-weight: 600;
}

.music-container {
    /*background: rgb(52, 11, 66);*/
    /*background: linear-gradient(16deg, rgba(52, 11, 66, 1) 6%, rgba(47, 12, 74, 1) 29%, rgba(52, 11, 66, 1) 48%, rgba(39, 12, 74, 1) 70%, rgba(52, 11, 66, 1) 100%);*/
    border-radius: 1rem;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
    padding: 5px 2px;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff !important;
}

#cover-box {
    border-radius: 1rem;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    bottom: 5em;
    width: 50%;
}

#cover {
    border-radius: inherit;
    display: block;
    width: 100%;
    max-height:100px;
    object-fit: cover;
    object-position: center center;
}

#music-box {
    width: 95%;
    margin:0 auto;
}

#music-info {
    text-align: center;
    position: relative;
    bottom: 2rem;
    color:#fff;
}

#title {
    /*font-size: 2rem;*/
    font-weight: 600;
}

#artist {
    /*font-size: 1.4rem;*/
    font-weight: 500;
}

#progress-container {
    height: 7px;
    width: 90%;
    background-color: rgb(255 255 255 / 33%);
    margin: 0 auto;
    cursor: pointer;
    border-radius: 8px;
}

#progress {
    background-color: #000;
    width: 0%;
    height: inherit;
    border-radius: inherit;
    transition: width 100ms ease-in;
}

#timer-bar {
    display: flex;
    justify-content: space-between;
}

#control-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto;
}

.bttn {
    display: inline-block;
    font-size: 1.6rem;
    /*padding: 1rem;*/
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 4rem;
    color: #a0a0a0;
    transition: background 200ms linear, color 200ms linear;
}

.special-btn {
    background-color: #000;
    color: #fff;
    font-size: 2.2rem;
    margin: 0 1rem;
    padding: 1.4rem;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 4rem;
    transition: opacity 200ms linear;
}

.scroll {
  margin-top:10px;
  height: 400px;
  overflow: scroll;
  /* Add scrollbar to the div when its height exceded 150px*/
  /* Can be used horizanlty or vertically according to your layout*/
}

@media (hover: hover) {
    .bttn:hover {
        background-color: #d8d8d8;
        color: #545454;
    }
    .special-btn:hover {
        opacity: 0.75;
    }
}