* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

body {
    display: flex;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background-image: url("bg.jpg");
    background-color: #cccccc;
    height: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* .hero-img {
    display: flex;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-image: url("bg.jpg");
    background-color: #cccccc;
    /* height: 500px; */
    /* background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
} */ 


.main-div {
    height: 100%;
    width: 70vw;
    margin-top: 1rem;
    border-radius: 1rem;
    background-color: rgba(220,220,220,0.5);
    /* background: transparent; */
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    /* align-content: center; */
}

.heading {
    font-size: 3rem;
    /* color: white; */
    margin: 2rem 0rem;
    text-align: center;
}

.description {
    font-size: 1.5rem;
    /* color: white; */
    text-align: center;
    margin: 0rem 2rem 2rem 2rem;
    border-bottom: 1px dotted black;
}

label {
    /* color: white; */
    font-size: 1.7rem;
}

input {
    height: 2.5rem;
    width: 90%;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding: 0rem 1rem;
}

button {
    margin: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    background-color: rgb(164, 116, 222);
    color: white;
    cursor: pointer;
}

table {
    margin: 1rem;
    border-collapse: collapse;
    background-color: rgba(160, 158, 158, 0.5);
}



.table-data {
    width: 4rem;
    height: 3.5rem;
    text-align: center;
}

#returnAmount {
    margin: 1rem;
    font-size: 1.3rem;
}