/*--------------------
HTML, p, h1, h2, h3...
---------------------*/





*{
  box-sizing: border-box;
}
html {
  color: aliceblue;
  background-color: #0e1117;
  scroll-behavior: smooth;
  font-family: sans-serif;
}
body {
  margin: 0px;
}

h1{
  margin: auto;
  font-size: 110px;
  color:rgb(42, 87, 109);
  text-shadow: 2px 2px 5px rgb(7, 7, 7);
  font-family: "Poppins", Sans-serif;
  text-transform: uppercase;
  align-content: center;
}

h2{
  font-size: 30px;
  margin: auto;
  font-family: "Poppins", Sans-serif;
  text-transform: uppercase;
}

h3{
  font-size: 25px;
  font-family: "Poppins", Sans-serif;
  text-transform: uppercase;
  margin: 0px;
  border-bottom: 1px solid rgb(42, 87, 109) ;
  margin-bottom: 0px;
}

h4{
  text-align: center;
  font-size: 20px;
  border-bottom: 1px solid rgb(42, 87, 109) ;
  width: 125px;
  font-family: "Poppins", Sans-serif;
  text-transform: uppercase;
}

h5 {
  font-size: 35px;
  border-bottom: 1px solid rgb(42, 87, 109) ;
}

h6{
  font-size: 20px;
  margin: 10px;
}

p {
  font-size: 18px;
  text-align: justify;
}

section {
  margin: 0px 170px;
}

ul {
  list-style: none;
  padding: 0px;
}

img{
  align-items: center;
}

span {
  font-family: sans-serif;
}

.deco{
  display: flex;
  font-size: 35px;
  color:rgb(42, 87, 109);
  text-decoration: none;
  padding: 0px 5px;
  align-items: center;
  align-content: center;
}

.title-decoration {
  display: flex;
  margin: 0px;
}






/*----------------
Section Navigation
-----------------*/






.flex-navigation{
  display:flex;
  height: 100px;
}
.container-nav{
  display: flex;
  margin: auto;
  align-content: center;
}

.container-nav ul {
  display: flex;
  padding: 0px;
}

.menu-nav {
  margin: 10px;
  font-size: 25px;
  text-decoration: none;
  color:rgba(255, 255, 255, 0.863);
  text-shadow: 2px 2px 5px rgb(7, 7, 7);
  justify-content: center;
  text-transform: uppercase;
}

.ulnav :hover  {
  color: rgba(127, 255, 212, 0.384);
}

.ulnav li {
  margin: auto;
}






/*-------------
Section Acceuil
--------------*/





.flex-acceuil {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: monospace;
  height: 750px;
  margin-bottom: 150px;
}
.acceuil{
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.news {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}





/*------------------
Section Présentation
-------------------*/





.presentation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin: 0px 400px;

}

.presentation p{
  font-size: 18px;
  height: 150px;
  width: 400px;
  text-align: justify;
  padding-top: 0px;
  margin-top: 50px;
}

.presentationcompetence {
  display: flex;
  justify-content: center;
}

.competence {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 200px;
  width: 350px;
}

.competence li{
  display: flex;
}

.competence ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0px;
}

ul div {
  display: flex;
  align-items: center;
  justify-items: center;
  margin: 5px;
  font-size: 18px;
  margin-left: 10px;
}





/*------------
Section Projet
-------------*/





.flex-projet{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 640px;
  align-items: center;
  margin-top: 300px;
}

.projet-content {
  display: flex;
  text-align: center;
  gap: 150px;
  margin-top: 50px;
}

.projet-content-selector div{
  justify-content: center;
}

.projet-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projet-column img {
  margin: 0px 5px 0px;
}

.projet-column p {
  text-align: center;
  margin-bottom: 5px;
  padding-top: 10px;

}

.projet-img {
  border-radius: 20px;
  border-style: solid;
  border-color: rgb(42, 87, 109);
  border-width: 2px;

}

.util{
  display: flex;
  flex-direction: wrap;
  gap: 30px;
  padding-top: 15px;
}

.util div{
  display: flex;
  border-radius: 20px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.907);
  border-width: 2px;
  width: auto;
  height: auto;
  padding: 5px;
  font-family: sans-serif;
  background-color: rgba(0, 0, 0, 0.59);

  font-size: 16px;
  align-items: center;
}





/*----------------
Section experience
-----------------*/






.flex-experience{
  display: flex;
  justify-content: center;
  height: 900px;
  margin-bottom: 30px;
  margin-top: 300px;
}
.timeline{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.timelinegauche{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 150px;
  width: 150px;
  position: relative;
  left: 50%;
  margin-left: 50px;
  border: 5px solid rgb(42, 87, 109);
  border-radius: 65px;
}

.timelinegauche::after{
  content: '';
  position: absolute;
  width: 5px;
  top: 45px;
  bottom: 45px;
  left: -20%;
  background-color: rgb(42, 87, 109);
  z-index: 1;
  rotate: 90deg;
}

.timelinedroite{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 150px;
  width: 150px;
  position: relative;
  right: 50%;
  margin-right: 45px;
  border: 5px solid rgb(42, 87, 109);
  border-radius: 65px;
}


.timeline ul {
  margin-bottom: 50px;
}

.timelinedroite::after{
  content: '';
  position: absolute;
  width: 5px;
  top: 45px;
  bottom: 45px;
  left: 118%;
  background-color: rgb(42, 87, 109);
  z-index: 1;
  rotate: -90deg;
}

.time{
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.time::after{
  content:"";
  position: absolute;
  border-right: 5px solid rgb(42, 87, 109);
  top: -30px;
  bottom: -30px;
  left: 50%;
}

.timeline span {
  display: flex;

  font-size: 15px;
}





/*----------------
Footer
-----------------*/





footer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000000bd;
  width: 100%;
  height: 80px;
}
.container-footer {
  display: flex;
}

.container-footer p {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0px;
}

.contact div{
  display: flex;
}

.contact a{
  display: flex;
  text-decoration: none;
  color: white;
  align-items: center;
  font-size: 17px;
  gap: 5px;
  margin-top: 5px;
}




/*PAGES MAINTENANCE*/





.maintenance {
  height: 1000px;
  text-align: center;
  align-content: center;
}

.maintenanceacc {
  font-size: 50px;
  text-decoration: none;
  color: rgba(127, 255, 212, 0.384);
  font-family: sans-serif;
}