body,html{
	height: 100%;
}

.progress-container {
    width: 60%;
    background-color: #ddd;
    border-radius: 25px;
    margin: 20px auto;
    overflow: hidden;
}
.progress-bar {
    height: 30px;
    width: 0%;
    background-color: #4CAF50;
    text-align: center;
    line-height: 30px;
    color: white;
    font-weight: bold;
    border-radius: 25px 0 0 25px;
    transition: width 0.4s ease;
}
.progress-message {
    margin-top: 20px;
    font-style: italic;
}
