* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 52.5%;
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
      background-image: url(img/djgirl3.png);
    background: rgb(71, 84, 135);
      background: #122E41;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: 70em;
}

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

.heading {
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 5px #2eb0cb;
    font-size: 4rem;
    font-weight: 600;
}

.music-container {
    background: rgb(52, 11, 66);
    background: #114A65;
    border-radius: 1rem;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    margin-top: 7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

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

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

#music-box {
    width: 100%;
}

#music-info {
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 5rem;
}

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

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

#progress-container {
    height: 7px;
    width: 100%;
    background-color: #C4C4C4;
    margin: 2rem 0 1rem;
    cursor: pointer;
    border-radius: 8px;
}

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

#timer-bar {
    display: flex;
    justify-content: space-between;
    font-size: 1.7rem;
}

#control-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.btn {
    display: inline-block;
    font-size: 1.6rem;
    padding: 1rem;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 4rem;
    color: #ffffff;
    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;
}

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