canvas {
  border: 2px solid rgba(1,98,255, .3) ;
  background: #F2F7FF;
  z-index : 1;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: normal;
}

body {
  background: #F2F7FF;
  touch-action: none; /* Prevents default touch actions */
  max-width: 100%;
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 992px) {
  .container {
    position: relative;
    text-align: center;
    background: white;
    padding: 0 0 30px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
  }

  #info {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 13%;
  }

  .info-text-desktop {
    color: #FC7157;
    font-size : 18px;
    letter-spacing: 1px;
  }

  .info-text-mobile {
    display: none;
  }

  #timer {
    font-size: 24px;
    font-family: Arial, sans-serif;
    color : #0162FF;
    padding: 30px;
  }

  .cta-button {
    background-color: #FC7157;
    box-shadow: 4px 4px 0px #0162FF;
    opacity: 1;;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    margin-top: 20px;
    cursor:pointer;
  }

  .fleurs_gauche {
    width: 20%;
  }

  .fleurs_droite {
    width: 20%;
  }

}

@media screen and (max-width: 992px) {
  .container {
    position: relative;
    text-align: center;
    background: white;
    padding: 0 0 30px 0;
    width: 100%;
    background-color: #f2f7ff;
  }

  #info {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 13%;
  }

  .info-text-desktop {
    display: none;
  }

  .info-text-mobile {
    color: #FC7157;
    font-size : 2rem;
    letter-spacing: 1px;
  }

  #timer {
    margin-bottom: 40px;
    font-size: 48px;
    font-family: Arial, sans-serif;
    color : #0162FF;
  }

  .cta-button {
    background-color: #FC7157;
    box-shadow: 4px 4px 0px #0162FF;
    opacity: 1;
    color: white;
    border: none;
    padding: 20px 25px;
    font-size: 2.5rem;
    margin-top: 60px;
    cursor:pointer;

  }

  .fleurs_gauche {
    width: 30%;
  }

  .fleurs_droite {
    width: 30%;
  }
}

.fleurs_gauche {
  position: fixed;
  bottom: 0;
  left: 0;
}

.fleurs_droite {
  position: fixed;
  bottom: -2px;
  right: 0;
}

.cta-button:hover {
  background-color: #0162FF;
  box-shadow: 4px 4px 0px #FC7157;
}
