*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    min-height: 100vh;
    background: #c0c0c0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content{
    height: 540px;
    width: 600px;
}

.content div{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.content div .image{
    background: #efefef;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 5px 10px #999;
}

.content div .image img{
    height: 60px;
    transition: transform 0.3s;
}
.content div .image img:hover{
    transform: scale(1.05);
}
.content div .bar{
    height: 80px;
    width: 450px;
    background: #efefef;
    border-radius: 40px;
    position: relative;
    margin-left: 20px;
    overflow: hidden;
    box-shadow: 2px 5px 10px #999;
}

.content div .progress{
    height: 80px;
    border-radius: 40px;
    background: linear-gradient(to right, var(--clr1), var(--clr2));
}

.content div .bar h1{
    position: absolute;
    right: 10px;
    color: var(--clr1);
    font-weight: 500;
    font-size: 35px;
}

.content div .bar h2{
    position: absolute;
    left: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 25px;
}