body {
    margin: 0;
    padding: 0;
    font-family: 'Bree Serif', serif;
}


.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.header{
    color: #9d4edd;
}

.description {
    margin: 10px auto;
    text-align: center;
  opacity: 0.7;
  color: rgb(117, 112, 112);
  
}


#bill-amount, #cash-given{
    border: 2px solid #9d4edd;
    padding: 10px;
    width: 200px;
    border-radius: 10px;
  }

  #bill-amount:focus, #cash-given:focus{
    outline: none;
  }

  #bill-amount:hover, #cash-given:hover{
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
  }

.input-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.bill-amount-container,.cash-given-container{
    margin: 5px auto;
}

.bill-amount-caption,.cash-given-caption{
 margin:5px 35px 5px 65px;
}


.error-message{
    text-align: center;
    margin: 7px auto;
    color: red;
}

.check-btn{
    margin: 5px auto;
    border: 2px solid #9d4edd;
    padding: 10px 30px;
    border-radius: 10px;
    background-color: #9d4edd;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.2s;
    font-family: 'Bree Serif', serif;
    font-weight: 200;
    font-size: 15px;
}


.check-btn:hover{
    transform: scale(1.1);
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.notes {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    justify-content: center;
    align-items: center;
}

.note-table {
    border-radius: 10px;
    border-collapse: collapse;
}

th,
td {
    padding: 10px;
    text-align: left;
    border: 2px solid #9d4edd;
}

.table-caption{
    margin-left: 150px;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px auto;
  }
  .links button {
    margin: 5px 40px;
    padding: 5px 30px;
    background-color: #9d4edd;
    border-radius: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    border: 0px;
    cursor: pointer;
    transition: 0.2s;
    
  }
  
  .links button a {
    font-size: 15px;
    text-decoration: none;
    color:white;
    font-family: 'Bree Serif', serif;
    font-weight: 200;
  }

  .link:hover{
    transform: scale(1.1);
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
  }



