html, body {
    height: 100%;
    width: 100%;
    margin: 0;
 
}

.main-background {
/*    background-image: url('/assets/boaconcept_banner_lightMode.png');
    background-size: cover;
    background-position: center;*/
}

.my-progress-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /*background-color: #f5f5f5;*/
    background-image: url('/assets/boaconcept_banner_lightMode.png');
    background-size: cover;
    background-position: center;
/*    background-size: contain;
    background-repeat: no-repeat;*/
}

.my-progress-image {
    width: 400px;
    height: 282px;
    background-image: url('/assets/boaconcept_lightMode.png');
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
}

.my-progress-bar {
    width: 250px;
    height: 10px;
    border-radius: 5px;
    background-color: #eee;
    overflow: hidden;
}

    .my-progress-bar .progress {
        width: 0%;
        height: 100%;
        background-color: #3686ee;
        transition: width 0.5s ease-in-out;
    }

.my-progress-text {
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
}