#body-container {
    max-width: 1980px;
    margin: auto;
}
header{
    background-image: url("../img/bgDesk1.jpg");
    background-position-x: center;
    height: 751px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.menu {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;    
    padding-top: 15px;
    padding-right: 80px;
}
#menu >a{
    text-decoration: none;
}

.sticky {
    position: fixed;
    top: 0;
    padding-top: 0;
    width: 100%;
    max-width: 1980px;
    background-color: rgb(136,96,208, 0.9);
}

#menu-small{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    
}

#menu-small >a{
    text-decoration: none;
    width: 100%;
}

.menu-button-small{
    display: none;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 7px;
    text-align: center;
    cursor: pointer;
}

.menu-button-small:hover{
    background-color: rgba(0, 0, 0, 0
    );
    color: rgba(255, 255, 255, 1);
}

.menu-button {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px;
    margin-left: 5px;
    cursor: pointer;
}

.menu-button:hover {
    color: rgba(255, 255, 255, 1);
}

#presentation {
    padding-top: 20vh;
    padding-left: 10vw;
    color: rgba(255, 255, 255, 0.8);
    width: 50vw;
}

#presentation >h1{
    font-size: 500%;
}


/****************************************************************************/

#main {
    max-width: 1500px;
    display: flex;
    flex-flow: wrap;
    margin: auto;
    padding: 15px;
    
}
#main > div {
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    /*background-color: #eeeeee;*/
    /*box-shadow: 10px 10px 10px #555555;*/
    color: #8860d0; /*#3aafa9*/
    
}

#left-bar{
    flex: 25%;
    border-right: 2px solid rgba(0, 0, 0, 0.1);
    
}

#profile-picture {
    width: 100%;
    border-radius: 10px;
}

#skills-container-left h3{
    margin-top: 20px;
    cursor: pointer;
}
.skill{
    margin-top: 10px;
}


/****** Risht Side *******/
#right-bar{
    flex: 65%;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}
#work-experience{
    padding-right: 10vw;
}

#work-experience >div{
    margin: 30px 0 30px 0;
}
#work-experience p,ul{
    color: rgba(0, 0, 0, 0.6);
}

#skills-card-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

.skill-container {
    width: 300px;
    text-align: center;
    margin: 10px;
}

.skill-container:hover {
    background-color: rgb(136,96,208, 0.4);
    
}

.skills-names{
    padding-right: 15px;
}

.skill-container > p{
    margin-top: 10px;
    color: rgba(0, 0, 0, 0.6);

}

.skill-container > i{
    font-size: 40px;
}

#hire-me{
    height: 400px;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    background-color: #8860d0;
    color: rgba(255, 255, 255, 0.8);
}

#hire-me > div {
    padding: 3vh;
}

#education{
    padding:30px 30vw 30px 50px;
    color: rgba(0, 0, 0, 0.6);
}
#education > h1,h2, h3{
    color: #8860d0;
}
#education >div{
    padding-left: 20px;
    margin: 30px 0 30px 0;
}



footer {
    padding: 10px 50px 50px 50px;
    background-color: #232324;
    color: rgba(255, 255, 255, 0.8); 
}
#foot-container {
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background-color: #6832ce;
    margin: 50px;
}
.contact-container{
    
    text-align: center;
    padding: 75px 10px 75px 10px;
}
#social-networks > a{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8); 
}
#social-networks > a:hover{
    color: rgba(255, 255, 255, 1); 
}


@media only screen and (max-width: 900px) {
    header{
        background-image: url("../img/bgDeskSmall.jpg");
        background-position-x: center;
        height: 751px;
    }
    #presentation {
        padding-top: 10vh;
        padding-left: 10vw;
        color: rgba(255, 255, 255, 0.8);
        width: 80vw;
    }

    #education{
        padding:30px 10vw 30px 20px;
        color: rgba(0, 0, 0, 0.6);
    }

    .contact-container{
        text-align: center;
        padding: 25px 10px 25px 10px;
    }


}

@media only screen and (max-width: 600px) {
    
    #menu-small{
        display: flex; 
        color: rgba(255, 255, 255, 0.8);
    }

    #menu {
        display: none;
    }
    #presentation {
        padding-top: 10vh;
        padding-left: 10vw;
        color: rgba(255, 255, 255, 0.8);
        width: 90vw;
    }
    #presentation >h1{
        font-size: 300%;
    }

    .skill-category {
        display: none;
    }

    #work-experience{
        padding-right: 0;
    }

    .contact-container{
        text-align: center;
        padding: 15px 10px 15px 10px;
    }

}