:root {
    --progress: 70%;
    --br: 70%;
}

html {
    background-color: #232323;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-color: aqua;
}

.box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -10px 5px 5px black;
    background-color: white;
    height: 200px;
    width: 200px;
    border: 1.5px solid black;
}

.progressbar {
    display: grid;
    place-items: left;
    height: 50px;
    width: 200px;
    border: 2px solid black;
    border-radius: 25px;
}

.progress {
    position: absolute;
    transform: translateX(0px);
    width: var(--progress);
    height: 50px;
    background-color: blue;
    border-radius: var(--br);
    display: grid;
    place-items: center;
}

p {
    color: rgb(17, 187, 29);
}