
html, body {
    margin: 0;
    padding: 0;
    background-color: black;
    overflow: clip;
}

#progress-container {
    width: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#progress-bar-container {
    width: 100%;
}

#progress-bar {
    width: 0%;
    height: 30px;
    background-color: rgba(80, 170, 80, 1);
}
