  *, *::before, *::after{

  		box-sizing: border-box;
  		margin: 0;
  		padding: 0;
  		outline: none;
  		font-family: sans-serif;
  }

  .container{
  	position: relative;
  	height: 100vh;
  	width: 100%;
  	background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .1)), url("images/ecole.jpg");
  	background-size: cover;
  	background-position: center;
  	padding: 0 8%;
  }

  nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px 0;
  }

  nav .logo{ 
    width: 80px;
    cursor: pointer;
  }

  nav h3{
    font-size: 25px;
    font-weight: bold;
     color: #fff;
   

  }

  nav ul{
    display: flex;
    justify-content: flex-end;
    flex: 1;
    padding-right: 40px;
    text-align: right;
    list-style-type: none;
  }

  ul li{
    margin-right: 10px;
  }

  ul li a{
    position: relative;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    font-size: 20px;

  }

  ul li a::after{
    content: '';
    background: #ffa400;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 5px;
    transform: translate(-50%,-5px);
    transition: 0.3s;
  }

  ul li a:hover::after{
    width: 50%;
  }

  .site-container{
    position: absolute;
    bottom: 10%;
    color: #fff;
  }

  .site-container p{
    font-size: 38px;
    font-weight: bold;
  }

  .site-container h1{
    font-size: 80px;
    line-height: 120px;
    margin-left: -10px;
    color: transparent;
    -webkit-text-stroke: 5px #fff;
  }

  .site-container h3{
    font-size: 30px;
    font-weight: 500;
  }

  .site-container .row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .row a{
    display: flex;
    align-items: center;
    padding: 5px 20px;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    margin-right: 40px;
    font-size: 20px;
    transition: 0.3s;
  }

  .row a:hover{
    background-color: #fff;
    color: #000;
  }

  .row a span{
    font-size: 15px;
    font-weight: bold;
    line-height: 2;
    margin-left: 10px;
  }

@media all and (max-width: 560px){

  .container{
   text-align: center;
   justify-content: center;
   align-items: center;
    
    width: 100%;
  }

  nav .logo{
    margin: auto;
  }


  nav ul{
   
    
    margin: 15px;
  }
    .site-container p{
    font-size: 10;
   }
  .site-container h1{
    font-size: 40px;
    
     line-height: 40px;
     color: #E6E6FA;
    
    -webkit-text-stroke: 3px #fff;
  }
  .site-container h3{
    font-size: 25px;

  
  }

  .row a{
    margin: 20px;
  }



}


