/** GENERAL */
:root{
    --fontColor : rgb(223, 223, 223);
    --fontColorSelect : #11C317;
    --back0 : #1d1d1f;
    --fontSize : 10px;
}

@font-face {
	font-family: 'Cascadia';
	src: url("../font/CascadiaTtf/CascadiaCode.ttf"),
}

body {
    background-color: #1d1d1f;
    color: var(--fontColor);
    margin:0;
    padding:0;
    font-family : 'Cascadia';
    overflow-x: hidden;
    max-width: 100vw;
}



/** NAVBAR */

nav{
    display : flex;
    justify-content: space-between;
    background: linear-gradient(#221D3C, #221d3c00 80%);
    margin-bottom: 50px;
    width:100vw;
}

h1{
    font-family : 'Cascadia';
    font-size :1.5rem;
    color: #11C317;
    font-weight: 550;
    span{
        font-weight: 300;
    }
    margin-left:10px;
}
.navMobile{
    z-index: 1;
    position: absolute;
    width: 210px;
    top: -160px;
    right:0px;
    border-radius: 10px;
    background-color: rgb(36, 159, 36);
    font-size:0.5em;
}
.opening{
    animation: menuOpen 0.8s ease forwards
}
.closing {
    animation: menuClose 0.8s ease forwards
    
}

.desktop{
    display: none;
}
.menuNav, #networks{
    display : flex;
    flex-direction : column;
    align-items: start;
    gap: 10px;
    font-size: 2em;
    list-style: none;
}
li:hover {
    cursor: pointer;
}


a{
    color: var(--fontColor);
    text-decoration: none;;
}
#burger {
    width: 40px;
    object-fit:contain;
    margin-right: 10px;
}
.navGit{
    width: 30px;
}

#networks{
    /* width: 100%; */
    /* justify-content: space-around; */
    display: flex;
    flex-direction: row;
    gap: 20px;
}