.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
body{
    background-color: #dddd;
}
#heading{
    text-align: center;
    font-size: 40px;
    margin-top: 6rem;
}
#initial-label{
    font-size: 30px;
    margin-bottom: 0.2rem;
}
#quantity-label{
    font-size: 30px;
    margin-bottom: 0.2rem;
}
#current-label{
    font-size: 30px;
    margin-bottom: 0.2rem;
}
.inputs{
    font-size: 15px;
    margin-bottom: 1rem;
}
#show-btn{
    font-size: 20px;
    margin-bottom: 1rem;
    border-radius: 1rem;
    padding: 0.3rem;
}
button:hover{
    background-color: rgb(255, 0, 255);
    color:white;
}
#output{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}