@font-face{
    font-family: 'Orbitron';
    src: url(../Fonts/Orbitron-font/Orbitron-VariableFont_wght.ttf);
}
@font-face {
    font-family: 'Quicksand';
    src: url(../Fonts/Quicksand/Quicksand-VariableFont_wght.ttf);
}


body {
    margin: 0;
    padding: 0;

    box-sizing: border-box;

    background-color: #13005a;
}



/* NAVBAR MENU */
#nav-bar-menu {
    width: 100%;
    height: 10vh;

    position: fixed;
    bottom: 0;

    background-color: #13005a;
    box-shadow: inset 0px 0px 10px 5px #39277a;
}

#nav-bar-menu ol {
    display: flex;
    flex-direction: row;

    list-style: none;

    justify-content: space-evenly;

    padding: 0;
    margin: 0;
    height: 100%;

    li {
        text-align: center;
        height: 100%;
        width: 33%;
        align-content: center;
        justify-self: center;
        padding: 0 10px 0 10px;
    }
    li:nth-child(2){
        border-width: 2px;
        border-style: solid;
        border-color: #03c929;
        
        border-top: none;
        border-bottom: none;

        padding: 0 15px 0 15px;

    }
}


#nav-bar-menu a {
    font-family: Orbitron;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;

    color:#ebecf1;

}

#nav-bar-menu .active { 
    background-color: #03c929;
    box-shadow: inset 0px 0px 10px 5px #00971e;

}


/* SOCIAL MEDIA */

.secondary-container header {
    display: flex;
    flex-direction: column;

    text-align: center;
    color: #ebecf1;

    h1 {
        font-size: 2.5rem;
        font-family: Orbitron;

        margin: 35vh 0 10px 0;
    }
    h2 {
        font-size: 1.5rem;
        font-family: Orbitron;
        margin: 0;
        border-bottom: none;
    }
}

.social-media {
    margin-top: 100px;
}

.social-media ol {
    display: flex;
    flex-direction: row;

    padding: 0;

    justify-content: space-evenly;

    li {

        padding: 20px;
        background-color: #13005a;
        list-style: none;

        border-radius: 50px;
        box-shadow: 0px 4px 8px 1px #03c929;
    }

}


.secondary-container header{
    display: none;
}
.secondary-container .social-media {
    display: none;
}


#content-container {
    display: none;
}
#experience {
    display: none;
}
#project {
    display: none;
}
/* .secondary-container:last-child {
    display: none;
} */



.secondary-container h2 {
    font-family: Orbitron;
    color: #ebecf1;
    text-transform: uppercase;

    border-bottom: 2px solid #ebecf180;
    margin: 10% 10% 15px 8%;
}

.secondary-container p {
    font-family: Quicksand;
    color: #ebecf1;
}

.section-container {
    display: flex;
    flex-direction: column;
    
    margin-left: 5%;
}