  /* Base */
  body {
    margin: 0;
    height: 100vh;
    background-color: rgb(192, 92, 255);
    animation: fadein 5s;
    font-family: ABCFavoritMonoRegular;
  }

  @keyframes fadein {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  h1 {
    font-size: 8vh;
    text-align: center;
    margin: 5px;
  }

  @media only screen and (max-width: 1000px) {
    h1 {
      font-size: 6vh;
    }
  }

  @media only screen and (max-width: 980px) {
    h1 {
      font-size: 25px;
    }
  }

  div {
    text-align: center;
    color: #ff4d00;
  }

  .button {
    padding: 2px;
  }

  .button-hide {
    opacity: 0;
  }



  .countdown {
    padding-bottom: 20px;
  }


  h3 {
    font-family: ABCFavoritMonoLight;
    font-size: 100px;
    margin-top: -15px;
    margin-bottom: 0px;
  }

  p {
    font-family: ABCFavoritMonoRegular;
    font-size: 20px;

  }

  .bloc-text-two {
    overflow: hidden;
    transition: overflow 1s ease-in-out;
    margin-left: 60px;
    margin-right: 60px;
  }

  .bloc-text-tree {
    overflow: hidden;
    transition: overflow 1s ease-in-out;
  }

  .ovni {
    width: 1200px;
    height: auto;
    position: relative;
    animation: move 8s 2;
    animation-direction: alternate;
    animation-iteration-count: infinite;
  }

  @keyframes move {
    0% {
      left: 0px;
      top: 0px;
    }

    100% {
      left: 600px;
      top: 0px;
    }
  }

  .contact {
    width: 550px;
    height: auto;
    top: 10%;
    position: absolute;
    animation: change 8s 2;
    animation-direction: alternate;
    animation-iteration-count: infinite;
  }

  @keyframes change {
    0% {
      left: 1200px;
      top: 100px;
    }

    100% {
      left: 0px;
      top: 100px;
    }
  }

  .moon {
    position: relative;
    top: 10px;
    left: 300px;
    width: 100%;
    max-width: 800px;
    height: auto;
    z-index: 200;
  }

  .cph {
    position: relative;
    top: -90px;
    left: -400px;
    max-width: 600px;
    height: auto;
  }

  .moon {
    -webkit-animation: spin 60s linear infinite;
    -moz-animation: spin 60s linear infinite;
    animation: spin 60s linear infinite;
  }

  @-moz-keyframes spin {
    100% {
      -moz-transform: rotate(360deg);
    }
  }

  @-webkit-keyframes spin {
    100% {
      -webkit-transform: rotate(360deg);
    }
  }

  @keyframes spin {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  .cph {
    -webkit-animation: cph 60s linear infinite;
    -moz-animation: cph 60s linear infinite;
    animation: cph 60s linear infinite;
  }

  @-moz-keyframes cph {
    100% {
      -moz-transform: rotate(-360deg);
    }
  }

  @-webkit-keyframes cph {
    100% {
      -webkit-transform: rotate(-360deg);
    }
  }

  @keyframes cph {
    100% {
      -webkit-transform: rotate(-360deg);
      transform: rotate(-360deg);
    }
  }

  .explosion {
    position: relative;
    width: 600px;
    height: auto;
  }

  hr {
    color: #ff4d00;
  }

  .toxic {
    fill: rgb(255, 77, 0);
    stroke: rgb(192, 92, 255);
    stroke-width: 2;
    width: 100%;
    max-width: 600px;
    height: 700px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 200px;
    margin-bottom: 200px;
    transition: 1s ease-in-out;
  }


  .toxic:hover {
    fill: rgb(192, 92, 255);
    stroke: #ff4d00;

  }

  .intro {
    position: absolute;
    top: 10px;
    left: 30px;
    text-align: left;

  }

  .intro-reveal {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .intro1 {
    font-size: 40px;
    padding-top: 30px;
    width: 40%;
    position: fixed;
    top: 0;
    left: 0;
    text-align: left;
    margin-top: 60px;
    margin-left: 20px;
    color: #ff4d00;
    z-index: 200;
  }

  .intro2 {
    font-size: 40px;
    width: 40%;
    position: fixed;
    top: 0;
    right: 0;
    text-align: right;
    margin-top: 100px;
    margin-right: 20px;
    color: #ff4d00;
    z-index: 200;
  }

  .intro-reveal-ok {
    opacity: 1;
    transition: 1s ease-in-out;
  }

  a {
    text-decoration: none;

  }

  img {
    width: 100%;
    height: auto;
  }

  .button:hover {
    background-color: #ff4d00;
    transition: background-color .5s ease-in-out, 
    transform .5s ease-in;
    color: rgb(192, 92, 255);
    cursor: pointer;
  }