/* ================================================================================================================================================================================= */
/* 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 */
/* ================================================================================================================================================================================= */

.aboutInfo{
    position: absolute;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    display: flex;
    justify-content: left;
    align-items: center;
    color: black;
    z-index: 10;
}

.text{
    position: absolute;
    display: flex;
    align-items: center;
    animation: transitionIn 3s;
}

@keyframes transitionIn{
    from{
        opacity: 0;
        transform: rotateX(-15deg);
    }
    to{
        opacity: 1;
        transform: rotateX(0);
    }
}

.text h1{
    margin-left: 42px;
    padding: 8px;
    line-height: 0.95;
    font-family: 'brolink_demoregular', sans-serif;
    font-size: 25em;
    font-weight: 525;
    transition: 1.5s;
}

.text p{
    position: absolute;
    top: 435px;
    left: 708px;
    padding: 8px;
    width: 750px;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.05em;
    font-weight: 525;
    transition: 1.5s;
}

.text p:hover{
    background: #ADD8E6;
    box-shadow: 0 0 50px #1e9bff;
}

.imageTooltip{
    margin: 0;
    padding: 0;
}

.imageTooltip li{
    position: absolute;
    list-style: none;
    right: 412px;
    top: 472px;
    width: 20px;
    height: 20px;
    border: 1px solid #1e9bff;
    border-radius: 50%;
    background: black;
    transition: 0.5s;
}

.imageTooltip li:hover{
    background: #1e9bff;
    box-shadow: 0 0 0 4px #ADD8E6, 0 0 0 6px #1e9bff;
}

.imageTooltip li .imageEdwin{
    position: absolute;
    bottom: 55px;
    width: 350px;
    box-sizing: border-box;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

/* border-box rekent border en padding mee met width en height, 100px width = 100 pixels width inclusief border */

.imageTooltip li .imageEdwin::before{
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: black;
    bottom: -11px;
    left: 125px;
    transform: rotate(45deg);
}

.imageTooltip li:hover .imageEdwin{
    visibility: visible;
    opacity: 1;
    transform: translateX(-37.5%) translateY(0px);
}

.image{
    border: 2px solid black;
    border-radius: 10px;
    width: 300px;
    height: auto;
}

/* ================================================================================================================================================================================= */
/* 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 */
/* ================================================================================================================================================================================= */

