body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #d7eaeb;
}

.badge-content {
    width: 100%;
    text-align: center;
}

.badge-content > h2 {
    font-size: 2em;
}

.badge {
    width: 50%;
    margin-bottom: 1rem;
}


form {
    margin: 1rem;
    text-align: center;
}

.divbutton {
    margin: auto;
    background: white;
    border-radius: 1rem;
}

.actionbutton {
    font-size: 1.5em;
    width: 15rem;
    height: 4.5rem;
}

#historycontainer {
    display: none;
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: white;
    overflow: scroll;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
}

#historycontainer.active {
    display: block;
}

.history {
    text-align: center;
}

/* progress bar */

.progress {
    width: 70%;
    display: inline-block;
    background-color: #3d7e81;
    padding: 1.3rem 2rem;
    border-radius: 1rem;
}

.progresscounter {
    color: white;
    margin-top: -8px;
}

.wrapper {
    position: relative;
    width: 100%;
    background-color: #063335;
    border-radius: 1rem;
    display: grid;
    height: 1.5rem;
}

.wrapper > * {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}  

.bar {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    border-radius: inherit;
}
.bar:after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: white;
    transform: translateX(calc(-100% + var(--progress) * 1%));
}