.container{
    display: flex;
    flex-direction: column;
    width: 90vw;
    height: 90vh;
    justify-content: center;
    align-items: center;
}
body{
    margin: auto;
    max-width: 90%;
    background-color: rgb(255, 107, 243);

}

#heading{
    text-align: center;
    margin-bottom: 0px;
    font-size: 50px;
}
p{
    text-align: center;
    margin-bottom: 35px;
    font-size: 18px;
}

#label-bill-amount{
    font-size: 27px;
}

#label-cash-given{
    font-size: 27px;
}
#bill-amount{
    margin-bottom: 20px;
    font-size: 18px;
}
#cash-given{
    margin-bottom: 10px;
    font-size: 18px;
}

button:hover{
    background-color: rgb(107, 107, 252);
}

#check-btn{
    margin: 1rem;
    font-size: 18px;
    border-radius: 0.8rem;
    padding: 0.3rem;
    cursor: pointer;
    
}

#error-message{
    text-align: center;
    font-size: 20px;
    margin-bottom: 1rem;
}

table,th,td{
    border: 1px solid black;
    border-collapse: collapse;
    padding: 8px;
    font-size: 15px;
  }

.input-form{
    margin-bottom: 10px;
}

