*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(26, 26, 26);
}

.box-1{
    background: linear-gradient(beige -20%, gray);
}

.center{
    display: flex;
    justify-content: center;
    align-items: center;
}

body{
    background: linear-gradient(to top, rgb(161, 3, 3), rgb(219, 219, 196) 60%);
}

.box{
    height: 100vh;
    flex-direction: column;
}

.art img{
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 5px solid beige;
}

.box-1{
    flex-direction: column;
    width: 350px;
    height: 340px;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgb(26, 26, 26), -2px -2px 10px rgb(26, 26, 26);
}

.art-name{
    text-align: center;
    overflow: hidden;
    width: 170px;
}

.box-1 h4{
    margin-bottom: 35px;
}

.art-name{
    white-space: nowrap;
    font-family: cursive;
    font-weight: bold;
}

.round{
    animation: round 10s linear infinite;
}

@keyframes round {
    0%{
        transform: rotateZ(0deg);
        
    }
    100%{
        
        transform: rotateZ(360deg);
    }
}

.run{
    animation: run 5s linear infinite;
}

@keyframes run{
    0%{
        transform: translate(100%);

    }
    100%{
        transform: translateX(-100%);
    }
}

.ctrl{
    cursor: pointer;
    background-color: beige;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin: 0 15px;
}
.ctrl:active{
    transform: scale(0.9);
}

i{
    font-size: 22px;
}

.none{
    display: none;
}
.msc{
    margin-top: 30px;
}

.prog{
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    width: 80%;
}

.time{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
}

.line{
    width: 100%;
    height: 5px;
    margin-top: 5px;
    background-color: rgba(190, 48, 48, 0.993);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.lineChild{
    cursor: pointer;
    position: absolute;
    border-radius: 10px;
    background-color: beige;
    width: 0%;
    height: 100%;
    transition: width 0.1s;
}

.lineChild::after{
    content: "";
    position: absolute;
    background: black;
    cursor: pointer;
    top: -3px;
    right: 0;
    height: 12px;
    width: 12px;
    border-radius: 50%;
}
