/* green #90BE23
 black #0F0F0F
*/

@font-face {
    font-family: CutiveMono;
    src: url(../fonts/CutiveMono-Regular.ttf);
  }
body{
    background: #0F0F0F;
    min-width: 354px;
}

#container{
    font-family: 'CutiveMono';
    margin:0 auto;
    max-width: 100%;
    font-size:25px;
    color:white;
}

.green-text{
    color:#90BE23 ;
}

p{
    font-size:21px;
}

h1{
    font-size:100px;
}

h2{
    font-size:43px;
}

.active{
    background:transparent !important;
    color:#90BE23;
}
.highlight li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #90BE23; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
  }
.row{
    margin:0px;
}
#About, #Experience, #Works{
    display:none;
}
/***/

/***Mobile nav***/
#open-nav{
    display:none;
    position: fixed;
    right:15px;
    top:20px;
    cursor: pointer;
    z-index: 15;
    background-size: cover;
    width:50px;
    background:#0F0F0F;
    padding:5px;
}
.bar1, .bar2, .bar3{
    width: 35px;
    height: 5px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}


#closer{
    width: 100%;
    height: 100%;
    z-index: 5;
    background: #0F0F0F;
    opacity: 0.9;
    position:fixed;
    margin:0;
    top:0;
    transition: 0.5s;
}

/***Mobile nav***/

/**Menu**/

nav{
    display:block;
    margin-top:225px;
    float: left;

}

nav li{
    max-width: 200px;
    min-width: 250px;
    border: solid 4px #90BE23;
    border-left:none;
    padding-top:10px;
    padding-bottom:10px;
    padding-left:40px;
    margin-bottom:25px;
    background:#90BE23;
    cursor: pointer;
}
/**Menu**/

#content{
    display: flex;
    max-width:100%;
    padding-left:100px;
    padding-right:20px;
    margin-top:100px;
    min-height: 80vh;
    max-height: 80vh;
}
#carusel{
    width: 216px;
    margin: 0 auto;
    padding-top:15px;
}

#carusel li:hover{
    cursor: pointer;
} 
#carusel ul{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
#carusel li{
    background: #90BE23;
    width:15px;
    height:15px;
    display:inline-block;
    border-radius:20px;
    border:4px solid #90BE23;
}
#carusel button{
    outline:none;
}
#carusel .left{
	width: 0;
    height: 0;
    margin-right:5px;
    border:none;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
    border-right: 30px solid #90BE23;
    background: none;
    border-radius:0;
}

#carusel .right{
	width: 0;
    height: 0;
    margin-left:5px;
    border:none;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
    border-left: 30px solid #90BE23;
    background: none;
    border-radius:0;
}
/*** About ***/
#About a{
    color:white;
    text-decoration: none;
}
#About a:hover{
    text-decoration: underline;
}

#About img{
    max-width: 100%;
    float: left;
}
#info{
    padding-right: 80px;
}
#info > div{
    margin-top:15px;
}


/** Experience ***/
.job, .employer {
    padding-bottom: 15px;
}
.description {
    max-width: 60%;
}
/** works **/
#Works img{
    max-width:80%;
}
.work{
    align-items: center;
}

@media only screen and (max-width:992px){
    #content{
        padding-left: 20px;
        padding-right: 20px;
    }
    #open-nav{
        display:block;
    }
    .active{
        border: solid 4px #0F0F0F;
        color:#0F0F0F
    }
    nav{
        width:0;
        height:100%;
        overflow: hidden;
        right:0;
        position: fixed;
        margin-top:0px;
        top: 0;
        float:none;
        z-index: 10;
        background: #90BE23;
        transition: 0.5s;
        padding-top: 150px;
    }
    nav li{
        padding-left:0;
        text-align: center;
        max-width: 100%;
    }
    #info{
        padding:0;
    }
    .work{
        padding-bottom:25px;
    }
}
@media only screen and (max-width:768px){
    
    #profile{
        max-width:275px;
        order:-1;
        align-items: center;
        display:block;
        margin:0 auto;
    }
}