*{
    /*margin: 0;*/
    /*padding: 0;*/
    box-sizing: border-box;
}

body{
    height: 100vh;
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
    background-color: #111;
    color: white;
    font-family: sans-serif;
}

.container{
    text-align: center;
    width: 300px;
    position: relative;
}

.counter{
    font-size:30px;
}

.loading-bar-back{
    position: absolute;
    height: 8px;
    background-color: lightgray;
    width: 100%;
    border-radius:5px;
    border: none;
}

.loading-bar-front{
    position: absolute;
    height: 8px;
    background-color: orangered;
    width: 0%;
    border-radius:5px;
    border: none;
}
