body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #1B1B1B ;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.root{
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 40px);
    width: calc(100vw - 10%);
    padding: 1% 5%;
    justify-content: space-between;
}
.row{
    display: flex;
    flex-direction: row;
    align-items: center;
}
a{
    text-decoration: none;
}


.root .header{
    display: flex;
    flex-direction: row;
    height: 40px;
    width: 100%;
    padding: 5px 0;
    justify-content: space-between;
}
.root .header .left{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.root .header .left p{
    color: white;
    font-size: 20px;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 12px;
    font-weight: bold;
}
.root .header .left img{
    height: 40px;
    width: 40px;
    border-radius: 10px;
    margin-top: 2px;
}
.root .header .right{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.root .header .right a{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    text-decoration: none;
    margin-left: 20px;
}
.root .header .right a:hover{
    text-decoration: underline;
}

.content{
    margin-top: 3%;
    min-height: calc(100vh - 200px);
}
.content .projectListHeader{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.content .projectListHeader .checkBoxsContainer{
    display: flex;
    flex-direction: row;
}
.content .projectListHeader .checkBoxsContainer .checkBoxItem{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    margin-left: 15px;
}
.content .projectsList .projectContainer{
    background-color: #212121;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}
.content .projectsList .projectContainer .projectImage{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.content .projectsList .projectContainer .projectImage img{
    max-width: 150px;
    border-radius: 5px;
}


.content .projectsList .projectContainer .projectInfo{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}
.content .projectsList .projectContainer .projectInfo a{
    color: #3475A7;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}
.content .projectsList .projectContainer .projectInfo h2{
    margin: 0;
}
.content .projectsList .projectContainer .projectInfo .progLang{
    display: flex;
    align-items: center;
    border: 2px solid #3475A7;
    padding: 3px;
    border-radius: 5px;
    margin-right: 10px;
}

.content .projectsList .projectContainer .projectInfo .progLang img{
    height: 15px;
    margin-right: 8px;
}
.content .projectsList .projectContainer .projectInfo .progLang p{
    margin: 0;
    color: #3475A7;
    font-weight: bold;
}
.content .projectsList .projectContainer .projectInfo .projectType{
    font-size: 10px;
    margin-left: 10px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 15px;
}

.content .projectsList .projectContainer .projectInfo .personnel{
    border: 2px solid #34A759;
    color: #34A759;
}
.content .projectsList .projectContainer .projectInfo .scolaire{
    border: 2px solid #A734A7;
    color: #A734A7;
}



.footer{
    height: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.footer p{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    margin: 0;
}