@charset "UTF-8";

@font-face {
    font-family:Antique;
    src: url(../fonts/Antique\ Medium\ 2.otf);
}

@font-face {
    font-family: airdrop;
    src: url(../fonts/airdrop-trial.otf);
}

html, body{
  width: 100%;
  height: 100%;
}

html {
  overflow-x: hidden;
}

body{
  width: 100dvw;
  overflow-x: hidden;

  overflow-y: scroll;
}


.animated-text {
    position: relative;
    display: inline-block;
    font-family: airdrop;
    font-size: 150px;
    text-align: center;
    animation: colorChange 6s ease-in-out infinite alternate;
  }
  
  @keyframes colorChange {
    0% {
      color: #0088ff;
      text-shadow: 0 0 10px #0088ff, 0 0 20px #0088ff, 0 0 30px #0088ff;
    }
    50% {
      color: #00ff88;
      text-shadow: 0 0 10px #00ff88, 0 0 20px #00ff88, 0 0 30px #00ff88;
    }
    100% {
      color: red;
      text-shadow: 0 0 10px red, 0 0 20px red, 0 0 30px red;
    }
  }



  
body {
  background: linear-gradient(to right, #0072ff, #e83e8c, #ff9f1c, #ffce00, #ffa800, #ff7f50, #0072ff);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}






  body {
    background-color: bisque;
  }

  body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, blue, rgb(255, 102, 0));
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .shape {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: antiquewhite;
    margin: 5px;
    animation: pulse 0.1s linear infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }





  p {
    font-family: Antique;
    font-size: 30px;
    position: sticky;
    color:aliceblue
  }



  a {
  text-decoration: none;
  }


  .bouton-accueil {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0px 100px 0px ;
    margin: 10px auto;
    border: none;
    width: 100%;
    height: 40%;
    font-family: airdrop;
    border-radius: 30px;
    font-size: 50px;
    font-weight: medium;
    text-align: center;
    
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;

    background-position: center center;
  }

  #bouton1{
    background-color:fuchsia;
    background-image: url("../images/2020202020201557336182.jpg");
    background-size: cover;

  }

  #bouton2{
    background-color:blueviolet;
    background-image: url("../images/shutterstock_789686476-1.jpg");
    background-size: cover;
  }

  #bouton3{
    background-color:blue;
    background-image: url("../images/crop_1wqh-8ZdP-NX89U2.jpg");
    background-size: cover;
  }

  #bouton4{
    background-color:darkorange;
    background-image: url("../images/ssssssshutterstock_789686476-1.jpg");
    background-size: cover;
  }

  #bouton5{
    background-color:darkred;
    background-image: url("../images/11292579.png");
    background-size: cover;
  }

  #bouton6{
    background-color:darkgreen;
  }

  
  .a:hover {
    background-color: #023e8a;
  }


  h2 {
    font-family: Antique;
    font-size: 30px;
    color: antiquewhite;
  }
  
  h3 {
    font-family: Antique;
    font-size: 30px;
    color: antiquewhite;
  }

  
  .ligne {
    height: 3px;
    width: 100%;
    background-color: white;
    top: 50%;
    animation: defilement 5s linear infinite;
    overflow-x: hidden;
  }
  
  @keyframes defilement {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }






  li {
    font-size: 15px;
    font-family: Antique;
    color:antiquewhite;
    }

    body {
      background-image: url('../images/04-PIST-DIAPOok.jpg');
      background-repeat: no-repeat;
      background-size: cover;
    }




  
    
  
/* SMARTPHONE */

@media only screen and (max-width: 768px)  {



.animated-text {
  font-size: 80px;
}

  
  @keyframes defilement {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }


a {
  display: block;
  padding: 0.5vw 0px 0.5vw 0px ;
  /* margin: 10px auto; */
  border: none;
  width: 98%;
  /* height: 35px; */
  font-family: Antique;
  border-radius: 30px;
  font-size: 35px;
  font-weight: medium;
  text-align: center;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
 

  }



  .buttons-container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }