html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* This is the heading section of the page */

.heading{
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    transition: background-color 0.3s ease;
    height: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #C2CFF0;
}
.child-div{
    width: fit-content;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: solid;
    z-index: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
}
.child-div:hover{
    background-color: #C2CFF0;
    color: rgb(68, 0, 68);
    border-radius: 5px;
    cursor: pointer;
}

/* This is the result section of the page.  */
.result{
    width: 100%;
    height: 200px;
    background-color: purple;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: white;
    font-display: swap;
    font-size: 18px;
    padding: 10px 20px;
}

.result-div{
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 1px solid white;

}