body {
    margin: 0;
}


.go_up_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgb(191, 191, 191);
    width: 55px;
    height: 55px;
    display: flex;
    justify-self: center;
    justify-content: center;
}
.arrow_up {
    font-size: 40px;
    font-weight: bold;
    color: black;
    text-decoration: none;
}



/*---------------Body starts here*--------------------------*/


.body_content {
    width: 70%;
    margin: 0 auto;
}

.page_nav {
    width: 100%;
}
.page_content {
    color: black;
    text-decoration: none;
    list-style-type: none;
    font-size: 1.5rem;
    height: fit-content;
    padding: 0px 30px 0px 0px;
}


/*page contetns start here*/
.heading {
    font-weight: bold;
    font-size: 1.5rem;
}

.heading_2 {
    font-weight: bold;
    font-size: 1.3rem;
}

.text {
    text-decoration: none;
    color: black;
    font-size: 20px;
    
}


/*TABLE*/
td {
    vertical-align: baseline;
}
tr:nth-child(even){
    background-color: #dddddd;
}
tr:nth-child(odd) {
    background-color: #eeeeee;
}
table {
    border-collapse: collapse;
    width:100%;
    display:block;
    overflow:auto;
}


td {
    border: none;
    padding: 20px 30px 20px 60px;
    text-indent: -30px;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    
}

.box {
    background-color: #f8f8f8;
    padding: 10px 30px;
    margin-top: 15px;
    margin-bottom: 50px;
}

li {
    margin-bottom: 5px;
}



/*Screen 768px or bigger*/
@media only screen and (min-width: 768px) {
    .body_content {
        width: 70%;

    }
}

/*Screen 380 or smaller*/
@media only screen and (max-width: 700px) {
    .body_content {
        width: 95vw;
    }
}