html {
    height: 100%
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #2F2F34;
}

/* Styles for the progress bar container */
.progress-container {
    width: 260px;
    height: 8px;
    background-color: #848488;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.25s ease-out;
}

/* Styles for the progress bar */
.progress-bar {
    display: block;
    height: 100%;
    background-color: #FFFFFF;
    width: 0;
    transition: width 0.5s ease;
}
