




/* --- MAIN BODY --- */





@import url("https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap");

:root {
    --open: #54B435;
    --closed: #F24C3D;
    --status: var(--closed);
}

body {
    font-family: "Roboto Slab", sans-serif;
    line-height: 2;
    background: #1363DF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
    
body:before {
    content: '';
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: -999;
    background-image: url("../img/background.png");
    opacity: 0.13;
    background-size: 60px;
    background-position: center;
    background-repeat: repeat;
}





/* --- NAVBAR --- */





.navbar-toggler {
    border: 2px solid #06283D !important;
}
.navbar-nav {
    align-items: end;
}


.nav-item {
    position: relative; 
}
.nav-link {
    font-size: 26px;
    color: #ACBCFF !important;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.5s;
}
.nav-link:hover {
    color: #fff !important;
    transition: 0.5s;
}
.nav-link:after {
    position: absolute;
    content: "";
    display: block;
    height: 5px;
    border-radius: 10px;
    width: 0;
    left: 50%;
    bottom: 0;
    background: #fff;
    transition: width 0.3s ease 0.1s, left 0.3s ease 0.1s;
    box-shadow: 0px 0px 5px;
}
.nav-link:hover:after {
    width: 100%; 
    left: 0; 
    border-radius: 10px;
}
.active {
    color: #fff !important;
}


#contact {
    color: #06283D !important;
    background-color: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 30px;
    text-decoration: none;
    overflow: hidden;
}
#contact:hover {
    color: #fff !important;
    background-color: #06283D;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    overflow: hidden;
}
#contact:hover:after {
    width: 0%;
}



@media (max-width: 991px) {
    .nav-link {
        text-align: center;
        font-size: 20px;
    }

    .contact {
        width: fit-content;
        margin: auto;
    }
}
@media (max-width: 800px) {
    .nav-link {
        font-size: 16px;
    }
}
@media (max-width: 620px) {
    .nav-link {
        font-size: 15px;
    }
}
@media (max-width: 575px) {
    .nav-link {
        font-size: 18px;
    }
    #collapse {
        position:absolute;
        z-index:1;
        top: 60px;
    }
}





/* --- MAIN WEBPART --- */





main {
    flex: 1
}

.mainrow {
    margin-top: 5% !important;
    margin-left: 10% !important;
    margin: auto;
}

#welcome {
    color: #ACBCFF;
}

#name {
    color: #fff;
    font-weight: 900;
}

#professions {
    background-color: #ACBCFF;
    border: 6px solid #fff;
    border-radius: 10em 10em 10em 10em;
    display: inline-block;
    min-width: 20vw;
    box-shadow: 7px 7px 10px;
}

#jobs {
    font-weight: 600;
    letter-spacing: 5px;
    color: #002B5B;
    margin: auto;
    text-align: center;
}

#cursor {
    animation: blinking 1s linear infinite;
}
@keyframes blinking {
    0%, 40%{
        opacity: 100%;
    }
    50%, 90% {
        opacity: 0%;
    }
}

#info {
    color: #ACBCFF;
}
#info a {
    text-decoration: none;
    color: #fff;
}


#statuscon {
    background-color: #06283D !important; 
    border: 4px solid #fff;
    border-radius: 3em 10em 10em 3em;
    display: flex;
    align-items: center;
    max-width: fit-content;
    box-shadow: -5px 0px 10px, 0px 5px 10px, 0px -5px 10px, 5px 0px 10px;
}

#dot {
    border-radius: 50%;
    background-color: var(--status);
    box-shadow: 0px 0px 10px 5px var(--status);
    animation: dotflicker 10s infinite;
}
#status {
    color: #fff;
    margin: auto;
    margin-right: 0;
    animation: statusflicker 10s infinite;
}
@keyframes dotflicker {
    10% { opacity: 1; box-shadow: 0px 0px 10px 5px var(--status);}
    12% { opacity: 0.3; box-shadow: 0px 0px 0px 0px var(--status);}
    14%, 58% { opacity: 1; box-shadow: 0px 0px 10px 5px var(--status);}
    60% { opacity: 0.3; box-shadow: 0px 0px 0px 0px var(--status);}
    62% { opacity: 1; box-shadow: 0px 0px 10px 5px var(--status);}
}
@keyframes statusflicker {
    30% { opacity: 1; color: #fff; }
    34% { opacity: 0.5; color: #ACBCFF;}
    38%, 86% { opacity: 1; color: #fff; }
    90% { opacity: 0.5; color: #ACBCFF;}
    94% { opacity: 1; color: #fff; }
}


.display-1 {
    font-size: 6rem;
}
.display-2 {
    font-size: 3rem;
}

@media (max-width: 1199px) {
    .display-1 {
        font-size: calc(2.5rem + 4.5vw);
    }
    .display-2 {
        font-size: calc(0.5rem + 3vw);
    }
}



.shuriken {
    position: relative;
}

.shuriken1 {
    animation: shuriken 10s infinite;
}

.shuriken2 {
    top: 10px;
    left: 10px;
    position: absolute;
    animation: shuriken 10s infinite;
    filter: brightness(0%) blur(5px);
    z-index: -1;
}

@keyframes shuriken {
    15% {
        transform: rotate(0deg);
    }
    35%,
    65% {
        transform: rotate(360deg);
    }
    85% {
        transform: rotate(0deg);
    }
}





/* --- FOOTER --- */





#footer {
    background: repeating-linear-gradient(-45deg, #002B5B, #002B5B 25px, #06283D 25px, #06283D 50px);
    background-size: 100% 600%;
    background-position: 0% 0%;
    width: fit-content;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border: 3px solid #fff;
    border-bottom: 0;
    transition: 0.5s;
}

#footer:hover {
    background-position: 0% 99%;
}

#copyright {
    font-size: 110%;
    text-decoration: none;
    color: #fff;
    text-align: center;
}