* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}

#main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#progress-count {
    text-align: right;
}

#progress-bar {
    width: 300px;
    height: 10px;
    background-color: #dadada;
    border-radius: 7px;
}

#progress {
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    height: 100%;
    width: 0%;
    border-radius: 7px;
    background-color: rgb(28, 119, 28);
}
