@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

:root {
    --primary-color: #be185d;
}

body {
    font-family: 'Varela Round', sans-serif;
    margin: 1rem;
    background-color:lightgreen;
}

.container-div {
    display:flex;
    flex-direction: column;
    align-items: center;
    min-height: 65vh;
}

.heading {
    color: var(--primary-color);
    margin-top: 3rem;
    margin-block-end: 0.5em;
}

.description {
    text-align: center;
    font-size: larger;
    margin-block-start: 0.5em;
}

#bill-amount {
    font-size: 14px;
    margin: 1rem;
    padding: 0.6rem 1rem;
    width: 30vh;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    outline: #fff;
}

#cash-given {
    font-size: 14px;
    margin: 1rem;
    padding: 0.6rem 1rem;
    width: 30vh;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    outline: #fff;
}

.label {
    font-size: large;
    font-weight: bold;
}

#check-btn {
    font-family: 'Varela Round', sans-serif;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: larger;
    color: white;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
}

.notes-table {
    width: 50%;
    text-align: justify;
    border-collapse: collapse;
    margin: auto;
}

.notes-table caption {
    margin: 1rem auto;
    font-size: x-large;
    font-weight: 500;
}

th, td {
    border: 2px solid var(--primary-color);
    width: 0%;
    padding: 0.4rem;
}

.footer {
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer p {
    font-weight: 100;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

.footer-header {
    margin-top: 2rem;
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
}

.list-item-inline {
    display: inline;
    padding: 0rem 0.5rem;
}

.footer .link {
    color: var(--primary-color);
}

.footer .social-link {
    text-decoration: none;
    color: var(--primary-color);
}

.footer ul {
    padding-inline-start: 0px;
}