html,body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: 0;
}

body{
    width: 100vw;
    height: 100vh;
}
.main-container{
    width: 100%;
    background:rgb(241, 241, 241);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.header{
    background-color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
    position: fixed;
    top: 1px;
    height: 80px;
}
.title{
    text-transform: uppercase;
    opacity: 0.7;
}
.logo{
    width: 50px;
    height:50px;
}
.body-content{
    padding-top: 100px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap:10px;
}
.side-heading{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}
.point{
    padding-left: 20px;
}
.inner-heading{
    padding-left: 20px;
}
.inner-point{
    padding-left: 50px;
}
.footer{
    margin-top: 60px;
    width: 100%;
    background-color: rgb(20, 24, 19);
    border-top-left-radius: 100px;
    border-top-right-radius:100px ;
    display: flex;
    padding: 40px;
    display: flex;
    flex-direction: column;
    padding-bottom:200px ;
}
.footer-report{
    color: white;
    font-size: 13px;
}

.footer-detail-heading{
    color: white;
    text-decoration: underline;
    font-size: 20px;
}
.footer-detail-div{
   padding:20px 0px;
   display: flex;
   flex-direction: column;
   gap: 10px;
}
.footer-label{
    color: white;
    padding-left: 20px;
    display: inline;
}
.footer-data{
    display: inline;
    color: rgb(204, 196, 196);
}

.footer-copy-rights{
    color: white;
    font-size: 10px;
    text-align: center;
    margin-top: 30px;
}
