canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
}

.progress-bar-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#progress-bar {
    width: 30%;
    margin-top: 0.5%;
    height: 2%;
    background: aquamarine;
}

label {
    color: white;
    font-size: 2rem;
}

main {
    position: absolute;
}