body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: hsl(220, 30%, 30%);
    color: white;
    text-align: center;
}
h1{
    font-size: 5rem;
    text-align: center;
}
#mainContainer{
    display: flex;
    justify-content: center;
    background-color: hsl(220, 30%, 50%);
    border: solid 5px hsl(220, 30%, 40%);
    border-radius: 15px;
}
.addictionContainer{
    width: 57%;
    font-size: 4rem;
    text-align: center;
    border-radius: 15px;
    margin: 10px;
}
.quitDateLabel{
    font-size: 1.5rem;
}
#alcoholContainer{
    background-color: hsl(220, 40%, 40%);
    border: solid 5px hsl(220, 40%, 30%);
}
#smokingContainer{
    background-color: hsl(220, 40%, 50%);
    border: solid 5px hsl(220, 40%, 40%);
}
.counter{
    font-family: monospace;
}
button{
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 20px;
    margin: 5px;
    min-width: 125px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: 0.5s;
    border: solid 5px hsl(0, 0%, 19%);
}
.quitButton{
    background-color: hsl(120, 20%, 50%);
}
.resetButton{
    background-color: hsl(0, 50%, 60%);
}
.quitButton:hover{
    background-color: hsl(120, 20%, 40%);
}
.resetButton:hover{
    background-color: hsl(0, 50%, 50%);
}
.percentageContainer{
    font-size: 2.5rem;
    font-family: monospace;
    font-weight: bold;
    text-align: left;
    color: hsl(0, 10%, 15%);
    padding-left: 50px;
    padding-right: 50px;
}
.Progress{
    width: 100%;
    background-color: hsl(0, 50%, 50%);
    margin-bottom: 15px;
    border: solid 5px hsl(0, 0%, 19%);
    border-radius: 15px;
}
.progressBar{
    width: 0%;
    height: 30px;
    background-color: hsl(120, 20%, 40%);
    text-align: center;
    line-height: 30px;
    border-radius: 10px;
}
footer{
    font-size: 1.5rem;
}