/** GLOBAL STYLING */
    /** GENERAL STYLING */
    * {
        font-family: "Noto Sans", sans-serif;
    }

    .container {
        flex: 1;
        margin: auto;
        height: 100vh;
        width: 100%;
        background-size: cover;
        background-color: white;
    }
    /** GENERAL STYLING */

    /** TOPBAR STYLING */
    .topbar {
        background-color: rgb(20, 50, 95);
        width: 100%;
        height: 8vh;
        margin: auto;
        display: flex;
        align-items: center;
    }
    .topbar ul li {
        align-self: center;
        display: inline-block;
    }
    .topbar ul li a {
        text-align: center;
        color: white;
        font-size: 20px;
        text-decoration: none;
        display: block;
        padding: 16px;
        height: 100%;
    }
    .topbar ul li a:hover, .topbar ul li a a:active {
        color: rgb(20, 50, 95);
        background-color: rgb(246, 246, 246);
    }
    .topbar #home {
        color: white;
        font-size: 25px;
        cursor: pointer;
    }
    .topbar #home:hover, .topbar #home:active {
        color: white;
        background-color: rgb(20, 50, 95);
    }
    /** TOPBAR STYLING */
    /** INDEX STYLING */
    .content hr {
        width: 85%;
    }
    .content {
        color: rgb(20, 50, 95);
        padding-bottom: 5%;
    }
    .content h1 {
        font-size: 80px;
        text-align: center;
        margin: auto;
        padding: 40px;
    }
    .content .text-bodies {
        margin-bottom: 5px;
        margin-left: 7.5%;
        margin-right: 7.5%;
        padding-top: 25px;
        text-align: justify;
    }
    .content p, .content i {
        font-size: 18px;
        text-wrap: wrap;
        color: rgb(40, 40, 40);
    }
    .content a {
        font-style: italic;
        color: rgb(20, 50, 95);
    }
    .content a:hover {
        color: rgb(0, 56, 147);
    }
    .content h2 {
        margin-top: 80px;
        font-size: 40px;
        text-align: left;
        padding: 0 7.5%;
    }
    .content h3 {
        margin-top: 80px;
        font-size: 30px;
        text-align: center;
        padding: 0 7.5%;
    }
    .content #contribution {
        padding-top: 250px;
    }
    .content video {
        margin-left: 15%;
        width: 75%;
    }
    .text-bodies h2 {
        text-align: center;
    }
/** INDEX STYLING */
/** GLOBAL STYLING */