* {
    box-sizing: border-box;

    margin: 0px;
    padding: 0px;

    font-family: "Roboto", sans-serif;

    /* border: solid 1px black; */
}

.main-container {
    width: 100%;
    /* height: 100vh; */

    background: #333;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;
}

.music-player {
    /* background: #807c71; */
    width: 400px;
    height: auto;
    padding: 10px 25px;
    text-align: center;
}

.music-player.background1{
    background: #807c71;
}

.music-player.background2{
    background: #7f7872;
}

.music-player.background3{
    background: #1e648a;
}

.nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.nav .circle{
    border-radius: 50%;

    width: 40px;
    height: 40px;

    line-height: 40px;

    background: #fff;
    /* color: #807c71; */
    color: inherit;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

    transition: 0.5s;
}

.nav .circle:hover {
    scale: 1.2;
}

.nav .circle:active {
    transform: translateY(2px);
}

.img {
    width: 300px;
    height: 300px;

    border-radius: 10px;
    box-shadow: 0px 0px 100px rgba(255, 255, 255, 0.5);
}

.music-player .name-song {
    font-size: 20px;
    font-weight: 600;
    color: #f9f4ef;
    margin-top: 10px;
}

.name-author {
    font-size: 14px;
    font-weight: 400;
    color: #c7c2ba;
}

#progress {
    appearance: none;
    -webkit-appearance: none;

    width: 100%;
    height: 6px;

    background: #c7c2ba;
    border-radius: 4px;
    cursor: pointer;

    /* margin: 40px 0; */
    margin-top: 40px;
    margin-bottom: 10px;
}

#progress::-webkit-slider-thumb {
    -webkit-appearance: none;

    width: 15px;
    height: 15px;

    background: #fff;
    border-radius: 50%;
    /* border: 8px solid #fff; */
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

.timer {
    display: flex;
    justify-content: space-between;

    color: #c7c2ba;

    font-size: 12px;
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 10px;
}

.controls div {
    width: 60px;
    height: 60px;

    /* margin: 20px 0px; */

    /* background: #fff; */
    background: inherit;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    /* color: #c7c2ba; */
    color: #fff;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
    cursor: pointer;

    transition: 0.5s;
}

.controls div:nth-child(3) {
    transform: scale(1.3);
    background: #fff;
    /* color: #fff; */
    /* color: #807c71; */
    color: inherit;
}

.controls span {
    width: 60px;
    height: 60px;

    /* margin: 20px 0px; */

    background: inherit;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #fff;
    cursor: pointer;

    transition: 0.5s;
}

.controls span:hover {
    scale: 1.5;
}

.controls span:active {
    transform: translateY(2px);
}



#volumeId {
    appearance: none;
    -webkit-appearance: none;

    width: 66%;
    height: 6px;

    background: #c7c2ba;
    cursor: pointer;
}

#volumeId::-webkit-slider-thumb {
    -webkit-appearance: none;

    width: 15px;
    height: 15px;

    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

.footer {
    width: 100%;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #000;
}

footer div{
    width: 100px;
    margin: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-img {
    height: 50px;
}

.github {
    color: #000;
    scale: 3;
    transition: color 0.5s;
}

.github:hover {
    color: #0088ff;
}