html{
    background-color: #FFE4C4;
    font-family: 'Montserrat', sans-serif;
}
div{
    display: flex;
    justify-content: center;
    height: 100%;
}
.logo {
    padding-top: 10%;
    width: 250px;
}
.Titre {

    color: #3A4B6E;
    font-size: 2em;
    opacity: 0;
    stroke-dasharray: 150px;
    stroke-dashoffset:0px;
    animation: opacityAnim 3s ease forwards;
}


html {
    height:100%;
    width: 100%;
  }
  
  body {
    margin:0;
  }
  
  .bg {
    animation:slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #FFE4C4 50%, #FFAA42 50%);
    bottom:0;
    left:-50%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
  }
  
  .bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
  }
  
  .bg3 {
    animation-duration:5s;
  }
  
  .content {
    background-color:rgba(255,255,255,.8);
    border-radius:.25em;
    box-shadow:0 0 .25em rgba(0,0,0,.25);
    box-sizing:border-box;
    left:50%;
    padding:10vmin;
    position:fixed;
    text-align:center;
    top:50%;
    transform:translate(-30%, -30%);
  }
  
  h1 {
    font-family:monospace;
  }
  
  @keyframes slide {
    0% {
      transform:translateX(-25%);
    }
    100% {
      transform:translateX(25%);
    }
  }
  
  .icone path:nth-child(1){
    width: 500px;
    opacity: 0;
    
    transform:translateX(20px);
    animation: opacityAnim 3s ease forwards;
    
}
.icone path:nth-child(2){
    width: 500px;
    opacity: 0;
    
    
    transform:translateX(-20px);
    animation: opacityAnim 5s ease forwards;
    
}

    
    


@keyframes opacityAnim{
    to{
        
        opacity: 1;
        transform: translatex(0px);
        
    }
    
}
@keyframes moving{
    to{
        transform: translatex(0px);
        
    }
    
}