/*Style du menu de navigation*/

* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  box-sizing: border-box;
}

nav {
  text-align: center;
  margin: 0px;
  display: flex;
  background: #1d697c;
  width: 100%;
}

.menu {
  display: flex;
  width: 100%;
}

.menu>li {
  float: left;
  color: white;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #1d697c;
  cursor: pointer;
  font-size: 22px;
  margin-right: 180px;
  margin-left: 80px
}

.sub-menu {
  transform: scale(0);
  transform-origin: top center;
  transition: all 300ms ease-in-out;
}

.sub-menu li {
  font-size: 16px;
  background: rgba(0, 0, 0, 0.8);
  padding: 100px;
  color: white;
  border-bottom: 0px solid rgba(255, 255, 255, 0.2);
  transform: scale(0);
  transform-origin: top center;
  transition: all 400ms ease-in-out;
  line-height: 20px;
  padding-top: 15px;
  padding-bottom: 10px;
}

.sub-menu li:last-child {
  border-bottom: 0;
}

.sub-menu li:hover {
  background: black;
}

.menu>li:hover .sub-menu li {
  transform: scale(1);
}

.menu>li:hover .sub-menu {
  transform: scale(1);
}




/*Style ensemble du document*/
body {
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.titre-principal {
  font-size: 55pt;
  font-weight: bold;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 30px;
}

/*Style d'image*/

.img {
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 0px;
  margin-bottom: 69px;
}

.test {
  display: flex;
  justify-content: center;
  align-items: center;
}

.skieur-img {
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.materiel-gauche {
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.compet-img {
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 100px;
  margin-bottom: 100px;
}

/*Style texte*/

.description {
  font-size: 28pt;
  text-align: justify;
  font: bold;
}

.skieur-txt {
  font-size: 16pt;
  text-align: justify;
  margin-right: 50px;
}

.materiel-txt {
  font-size: 16pt;
  text-align: justify;
  margin-right: 100px;
}

.lien {
  color: white;
}

.skieur-description {
  font-size: 16pt;
  text-align: justify;
  margin-right: 50px;
}

/*Style vidéo youtube*/

.video {
  margin-top: 100px;
  margin-left: 320px;
  margin-right: 320px;
  margin-bottom: 50px;
}

/*Style footer*/

.footer {
  background-color: #1d697c;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 16pt;
  height: 60px;
  width: 100%;
}


/*Media Queries mobile*/

@media all and (max-width: 1000px) {

  .test {
    margin-right: 100px;
    display: block;
    width: 400px;
  }

  .menu {
    display: block;
    width: 400px;
    
  }

  .video {
    display: none;
  }

  .description {
    margin-right: 50px;
    margin-left: 190px;
    margin-bottom: 100px;
    width: 600px;
  }

  .menu>li {
    width: 780px;
  }

  .img {
    width: 300px;
    margin-left: 290px;
  }

  .skieur-txt{
    width: 700px;
    margin-left: 140px;
    margin-right: 100px;
    margin-bottom: 50px;
  }
  
  .skieur-img{
    width: 300px;
    display:block;
    margin-right: 40px;
  }
  .skieur-description{
    display:none;
  }
  .materiel-txt{
    width:700px;
    margin-left:120px;
    margin-bottom: 50px;
  }
  .materiel-gauche{
    width: 800px;
    margin-left: 150px;
  }
  .compet-img{
    width: 300px;
    display:block;
    margin-left: 140px;
  }
}