*, *::before, *::after {
	box-sizing: border-box;
}

body {
	padding: 0;
	margin: 0;
    background-color: black;
}
.progress{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.progress-bar {
	position: relative;
	width: 400px;
	height: 3em;
	background-color: #111;
	border-radius: 1.5em;
	color: white;
}

.progress-bar::before {
	content: attr(data-label);
	display: flex;
	align-items: center;
	position: absolute;
	left: .5em;
	top: .5em;
	bottom: .5em;
	width: calc(var(--width, 0) * 1%);
	min-width: 2rem;
	max-width: calc(100% - 1em);
	background-color: #069;
	border-radius: 1em;
	padding: 1em;
}

.container{
    background-color: white;
    border:goldenrod 5px solid;
    text-align: center;
    font-size: 50px;
}
p{
    color: white;
    text-align: center;
    font-size: 40px;
}
