/* ================================================================================================================================================================================= */
/* BODY */
/* ================================================================================================================================================================================= */



/* ================================================================================================================================================================================= */
/* HEADER */
/* ================================================================================================================================================================================= */

.mainNav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: space-between;
    font-family: 'brolink_demoregular', sans-serif;
    font-weight: normal;
    font-size: normal;
    z-index: 1000;
    white-space: nowrap;
}

.logo{
    position: absolute;
    top: 5px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navLinks{
    display: flex;
}

.navLink{
    flex: 1;
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.navLink:first-child > span{
    margin-left: 780px;
    /* margin-right: -900px; */
    margin-top: 1px;
}

.navLink:last-child > span{
    margin-right: 760px;
    /* margin-left: -900px; */
    margin-top: 1px;
}

.navLink{
    align-items: center;
}

.social{
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.backgroundVideo{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.7;
}

@media (min-aspect-ratio: 16/9){
    .backgroundVideo{
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9){
    .backgroundVideo{
        width: auto;
        height: 100%;
    }
}

nav ul li{
    list-style: none;
    display: inline-block;
}

/* ================================================================================================================================================================================= */
/* SECTION */
/* ================================================================================================================================================================================= */

.course2Info{
    position: absolute;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    z-index: 10;
}

.textHeader{
    position: absolute;
    display: flex;
    justify-content: center;
    top: 50px;
    font-family: 'brolink_demoregular', sans-serif;
    font-size: 9.75em;
    font-weight: 525;
    text-align: center;
}

.web{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 11;
}

.webImg{
    margin-left: 10px;
    margin-right: 10px;
    width: 640px;
    height: auto;
    border: 1px solid #1e9bff;
    transition: 1.5s;
}

.webImg:hover{
    height: auto;
    width: 900px;
    box-shadow: 0 0 50px #1e9bff;
}

.healthyApp{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 11;
}

.healthyAppImg{
    margin-left: 10px;
    margin-right: 10px;
    height: 453px;
    width: auto;
    border: 1px solid #1e9bff;
    transition: 1.5s;
}

.healthyAppImg:hover{
    height: 650px;
    width: auto;
    box-shadow: 0 0 50px #1e9bff;
}

.textWeb{
    margin-top: 10px;
    width: 624px;
    animation: transitionIn 3s;
}

.textWeb p{
    font-family: 'Roboto Mono', monospace;
    font-size: 1.05em;
    font-weight: 525;
    transition: 1.5s;
}

.textWeb p:hover{
    padding: 8px;
    margin: -8px;
    background: #ADD8E6;
    box-shadow: 0 0 50px #1e9bff;
}

.textHealthyApp{
    width: 211px;
    animation: transitionIn 3s;
}

.textHealthyApp p{
    font-family: 'Roboto Mono', monospace;
    font-size: 1.05em;
    font-weight: 525;
    transition: 1.5s;
}

.textHealthyApp p:hover{
    padding: 8px;
    margin: -8px;
    background: #ADD8E6;
    box-shadow: 0 0 50px #1e9bff;
}

@keyframes transitionIn{
    from{
        opacity: 0;
        transform: rotateX(-15deg);
    }
    to{
        opacity: 1;
        transform: rotateX(0);
    }
}

.contentNav{
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 50px;
    width: 50px;
    justify-content: space-between;
}

.leftArrowImg{
    transition: 1.5s;
}

.leftArrowImg:hover{
    background: rgba(30, 155, 255, 0.21);
    box-shadow: 0 0 50px #1e9bff, 0 0 60px #1e9bff, 0 0 70px #1e9bff, 0 0 80px #1e9bff;
}

.rightArrowImg{
    transition: 1.5s;
}

.rightArrowImg:hover{
    background: rgba(30, 155, 255, 0.21);
    box-shadow: 0 0 50px #1e9bff, 0 0 60px #1e9bff, 0 0 70px #1e9bff, 0 0 80px #1e9bff;
}

/* ================================================================================================================================================================================= */
/* FOOTER */
/* ================================================================================================================================================================================= */

.footInfo{
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    z-index: 9;
}

.copyRight{
    font-family: 'brolink_demoregular', sans-serif;
    position: absolute;
    left: 10px;
    bottom: 10px;
    font-size: 1.7em;
    animation: fade-inout 1.25s infinite alternate;
}

.cmdIcon{
    font-family: 'brolink_demoregular', sans-serif;
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 1.7em;
    animation: fade-inout 1.25s infinite alternate;
    /* animation: glowing 2.5s ease-in-out infinite alternate; */
}

@keyframes fade-inout{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

/* cmdIcon has a glowing animation with this function */
/* @keyframes glowing {
    from{    
        text-shadow: 0 0 10px #00498D,
        0 0 12px #00498D,
        0 0 14px #00498D,
        0 0 16px #00498D,
        0 0 18px #00498D,
        0 0 20px #00498D,
        0 0 22px #00498D;
    }
    to{
        text-shadow: 0 0 10px #00FFFF,
        0 0 12px #00FFFF,
        0 0 14px #00FFFF,
        0 0 16px #00FFFF,
        0 0 18px #00FFFF,
        0 0 20px #00FFFF,
        0 0 22px #00FFFF;
    }
} */

/* ================================================================================================================================================================================= */
/* LINKS */
/* ================================================================================================================================================================================= */

a:link{
    text-decoration: none;
    color: black;
}

a:visited{
    text-decoration: none;
    color: black;
}

a:hover{
    text-decoration: none;
    color: black;
}

a:active{
    text-decoration: none;
    color: black;
}

/* ================================================================================================================================================================================= */
/* IMAGES */
/* ================================================================================================================================================================================= */

