*{
    margin: 0;
    padding: 0;
    font-family:'Courier New', Courier, monospace;
}
.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(19, 19, 19, 0.7), rgba(19, 19, 19, 0.7)), url(../../static/images/background.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.navigation-header {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
.navigation-logo {
    width: 80px;
    border: 1px solid #019199;
    border-radius: 4px;
    padding: 6px 12px;
    transition: 0.2s;
}
.navigation-logo:hover {
    transform: scale(1.05);
}
.navigation-bar {
    flex: 1;
    text-align: right;
}
.navigation-link {
    list-style: none;
    display: inline-block;
    padding: 7px 14px;
    position: relative;
}
.navigation-menu {
    color: #a9a9a9e1;
    text-decoration: none;
    font-size: 21px;
    position: relative;
}
.navigation-menu::after {
    content: '';
    width: 0;
    height: 2px;
    background: #ff1900;
    position: absolute;
    display: block;
    margin: auto;
}
.navigation-menu:hover::after {
    width: 98%;
    transition: 0.5s;
}
.navigation-menu.active-link::after{
    width: 98%;
    opacity: 0;
    animation: opacityOn 0.6s normal forwards step-end;
    animation-delay: 0.5s;
}
@keyframes opacityOn{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
.navigation-menu-close-icon {
    position:absolute;
    top: 50 px; 
    left: 90px;
    cursor: pointer;
    display: none;
}
.navigation-menu-icon {
    position:absolute;
    top: 20px; 
    right: 25px;
    display: none;
}
.text-box {
    width: 90%;
    color: #a9a9a9e1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1 {
    font-size: 50px;
}
.text-box p {
    margin: 10px 0 40px;
    font-size: 24px;
    color:#a9a9a9e1;
}
.page-button {
    display: inline-block;
    text-decoration: none;
    color: #a9a9a9e1;
    border: 1px solid #019199;
    border-radius: 4px;
    padding: 16px 32px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.page-button:hover{
    border: 1px solid #019199;
    background: #019199;
    transition: 0.5s;
    color:#01091a;
    font-weight: 1000;
}
/* ===============Mission=============== */
#mission-section{
    background-image: linear-gradient(rgba(19, 19, 19, 0.7), rgba(19, 19, 19, 0.7));
    overflow:hidden;
}
#mission{
    color: rgb(255, 255, 255, 0.5);
    padding: 10px 0;
    font-size: 30px;
    font-weight: 900;
    margin-left: 10px;
    margin-right: 10px;
    height: 100vh;
}
.mission-title{
    color: rgb(255, 255, 255, 0.5);
    padding: 5px 0;
    font-size: 42px;
    font-weight: 600;
}
.mission-statement{
    display: grid;
    position: relative;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 15px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 400;
}
.mission-description{
    background: #262626;
    padding: 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    transition: background 0.5s, translate 0.5s;
}
.mission-description:hover{
    background: #01091a;
    transform: scale(1.00125);
    color: rgba(255, 255, 255, 0.5);
}
.mission-description i{
    padding: 5px 0;
}
.mission-description h1{
    color: rgba(255, 255, 255, 0.5);
    font-size: 30px;
    font-weight:900;
    margin-top: 5px;
    margin-bottom: 5px;
}
.mission-description a{
    text-decoration: none;
    color: #ababab;
}
.mission-link{
    color: #ababab;
    text-decoration: none;
    position: relative;
}
.mission-link::after{
    content: '';
    width: 10%;
    height: 1px;
    background: #ff1900;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: 0.5s;
}
.mission-link:hover::after{
    width: 100%;
}
/* ===============Projects=============== */
/* ===============Publications=============== */
/* ===============Contact================= */
#contact{
    color: rgba(255, 255, 255, 0.5);
    padding: 100px 0px;
    font-size: 30px;
    font-weight: 900;
    background-image: linear-gradient(rgba(19, 19, 19, 0.7), rgba(19, 19, 19, 0.7));
    width:100%;
    overflow: hidden;
}
.contact-row{
    display: grid;
    position:relative;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 15px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 400;
}
.contact-description{
    background: #262626;
    padding: 40px;
    font-size: 14px;
    font-weight: 900;
    border-radius: 15px;
    transition: background 0.5s, translate 0.5s;
}
.contact-description:hover{
    background: #01091a;
    transform: scale(1.00125);
}
.contact-description h1{
    color: rgba(255, 255, 255, 0.5);
    padding: 5px 0;
    font-size: 42px;
    font-weight: 600;
}
.contact-right p{
    font-size:20px;
    font-weight:400;
}
.email-address{
    color: #ababab;
    text-decoration: none;
    position: relative;
}
.email-address::after{
    content: '';
    width: 10%;
    height: 1px;
    background: #ff1900;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: 0.5s;
}
.email-address:hover::after{
    width: 100%;
}
.contact-social-links{
    padding: 80px 40px;
    text-decoration: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
    position: relative;
}
.contact-social-icons{
    filter: invert(48%) sepia(19%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
    transition: transform;
}
.contact-social-icons:hover{
    transform: scale(1.00125);
}
.contact-left p{
    font-size:32px;
    font-weight:900;
}
.contact-right a{
    text-decoration: none;
    color: #ababab;
}
/* ===============Copyright=============== */
#footer{
    width: 100%;
    background: rgba(0,0,0,0);
    font-size:14px;
    font-weight:100;
    background-image: linear-gradient(rgba(19, 19, 19, 0.7), rgba(19, 19, 19, 0.7));
    padding: 5px 0;
}
#copyright{
    color: #ababab;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,0);
}
.copyright-link{
    color: #ababab;
    text-decoration: none;
}
.built-with-love-icon{
    color:red;
}
.web-developer-link{
    color: #ababab;
    font-size:14px;
    text-decoration: none;
}
.web-developer-link span{
    font-size:14px;
    position: relative;
}
.web-developer-link span::after{
    content: '';
    width: 10%;
    height: 1px;
    background:#ff1900;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: 0.5s;
}
.web-developer-link span:hover::after{
    width: 100%;
}
.web-developer-url{
    color: rgba(0,0,0,0);
    font-size:14px;
    position: relative;
    text-decoration: none;
}

@media(max-width: 1100px) {
    .text-box h1 {
        font-size: 14px;
    }
    .text-box p {
        font-size: 12px;
    }
    .page-button {
        font-size: 12px;
        padding: 12px 12px;
    }
    .header {
        background-image: linear-gradient(rgba(19, 19, 19, 0.7), rgba(19, 19, 19, 0.7)), url(../../static/images/background_smaller.jpg);
    }
    #mission {
        padding: 8px 0;
        margin-left: 8px;
        margin-right: 8px;
    }
    .mission-description {
        font-size: 11px;
        padding: 6px;
    }
    .mission-description h1{
        font-size: 11px;
        margin-top: 2px;
        margin-bottom: 2px;
    }
    .mission-title{
        font-size: 18px;
    }
    .mission-icon{
        display:none;
    }
    .contact-left{
        transform: scale(0.75);
    }
}
@media(max-width: 960px) {

    .header {
        background-image: linear-gradient(rgba(19, 19, 19, 0.7), rgba(19, 19, 19, 0.7)), url(../../static/images/background_phone.jpg);
    }
    .navigation-bar {
        position:fixed;
        background:#019199;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        z-index: 2;
        padding-top: 100px;
        transition: 0.5s;
        text-align: left;
    }
    .navigation-link {
        display: block;
    }
    .navigation-menu {
        color: #01091a;
        font-weight: 1000;
        text-align: left;
        transition: 0.5s;
    }
    .navigation-menu-icon {
        display: block;
        cursor: pointer;
    }
    .navigation-menu-close-icon {
        display: block;
    }
}
