html,
body {
    height: 100%;
}

body {
    margin: 0px;
    padding: 0px;
    background: #181818;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 12pt;
    font-weight: 200;
    color: #FFF;
}


ol,
ul {
    padding: 0;
    list-style: none;
}

p {
    line-height: 180%;
}


.container {
    overflow: hidden;
    margin: 0em auto;
    width: 1200px;
}




/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

#wrapper {
    position: relative;
    padding: 5em 0em 7em 0em;
    background: #FFF;
}

/* NAVBAR */
.navbars{
    display: flex; /*flex helps to bring things in a row*/
    align-items: center;
    position: sticky; /*to make the navbar stick to the page  */
    top: 0;
}

.navbars::before{
    content: "";
    background-color: rgb(243, 241, 235);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.8;
}

/* navigation bar: logo and image */
.logo{
    margin: 6px 10px;
}

.logo img{
    height: 53px;
    margin: 0px 3px;
    border-radius: 40px;
}

/* navigation bar: list styling */

.navbars ul{ /*(#abc xyz) means that access xyz which is under the parent abc, not all the xyz in the html code*/
    display: flex;
}

.navbars ul li{
    height: 100%;
    list-style: none;
}

.navbars ul li a{
    display: block;
    text-decoration: none;
    color: black;
    padding: 3px 15px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
}

.navbars ul li a:hover{
    color: black;
    background-color: #0a440d51;
}




/*********************************************************************************/
/* Extra                                                                         */
/*********************************************************************************/


.content-heading {
    color: #111111;
    font-weight: bolder;
}

/*FOOTER*/
.footer-dark {
    padding: 50px 0;
    color: #f0f9ff;
    background-color: #021703e9;
}

.footer-dark h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.footer-dark ul {
    padding: 0;
    list-style: none;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

.footer-dark ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.6;
    font-family: 'Inter', sans-serif;
}

.footer-dark ul a:hover {
    opacity: 0.8;
}


.footer-dark .item.text {
    margin-bottom: 36px;
}


.footer-dark .item.text p {
    opacity: 0.6;
    margin-bottom: 0;
}

.footer-dark .item.social {
    text-align: center;
}


.footer-dark .item.social>a {
    font-size: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
    margin: 0 8px;
    color: #fff;
    opacity: 0.75;
    font-family: 'Inter', sans-serif;
}

.footer-dark .item.social>a:hover {
    opacity: 0.9;
}

.footer-dark .copyright {
    text-align: center;
    padding-top: 24px;
    opacity: 0.3;
    font-size: 13px;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

#copyright {
    overflow: hidden;
    padding: 5em 0em;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

#copyright p {
    text-align: center;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Inter', sans-serif;
}

#copyright a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
}

.container {
    overflow: hidden;
    margin: 0em auto;
    width: 1200px;
}

.row{
    display: flex;
    justify-content: center;
    
}

.arrange{
    align-items: center;
    justify-content: center;
    width: 30%;
    text-align: justify;
}