body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #c0deff 0%, #00dadb 51%, #072a60 85%);
    color: #072a60;
}

/* Navigation Bar */

.navbar {
    padding: 1% 10%;
    background-color:#c0deff;
}
    .navbar-brand {
        font-size: 1.5rem;
    }
    .nav-link {
        text-align: right;
    }

/*Home Page Introduction Section*/

.about-us-introduction-image {
    width:100%;
    position: absolute;
    opacity: 0.2;
    z-index: 1;
}
    .logo {
        position: relative;
        text-align: center;
        z-index: 2;
    }
    #logo-image img {
        padding-top: 3%;
        width: 30%;
    }
    #slogan-text {
        padding: 1% 20% 8%;
        font-style: italic;
        font-size: 1.5rem;
    }

/*Mission and Vision Sections*/

h2 {
    font-weight: bold;
    padding-bottom: 5%;
}
    .statement-section {
        border-radius: 30px;
        margin: 5% 15%;
        text-align: center;
    }
        .statement-section img {
            width: 40%;
            border-radius: 5%;
            filter: drop-shadow(8px 8px 6px #072a60);
        }
        .statement-section-text {
            padding: 0 3%;
        }
.statement-section, .employee-section {
    background-color: white;
    padding: 5%;
}
.statement-section-text, .founder-statement-text {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    font-size: 1.3rem;
}

/*Employee Section*/

.employee-section {
    margin-top: 5%;
    text-align: center;
}
    .founder-section img {
        width: 25%;
        border-radius: 100%;
    }
    .founder-statement-text {
        padding-left: 10%;
    }
/*Footer Section*/

.footer {
    padding-top: 3%;
    text-align: center;
    color: white;
}
    .fa-brands {
        margin: 0 0.5% 2%;
        font-size: 150%;
    }

/*Mobile Version*/

@media screen and (max-width: 900px) {
    .statement-section {
        margin: 0;
        background: none;
        padding: 10% 0;
    }
    .founder-section {
        padding-top: 10%;
    }
        .founder-section img {
            width: 30%;
            margin: auto;
        }
        .founder-statement-text {
            margin: auto;
            width: 80%;
            padding-left: 0;
            padding-top: 5%;
        }
    .founder-statement-text, .statement-section-text, #slogan-text {
        font-size: 1rem;
    }
}
