@charset "UTF-8";

@font-face {
  font-family: 'SuisseBPIntl-Bold';
src: url(./../fonts/SuisseBPIntl-Bold.ttf) ;
}

@font-face {
  font-family: 'SuisseBPIntl-Medium';
src: url(./../fonts/SuisseBPIntl-Medium.otf) ;
}

@font-face {
  font-family: 'SuisseBPIntl-Regular';
src: url(./../fonts/SuisseBPIntl-Regular.otf) ;
}


body.is-red {
  background-color: rgb(247, 0, 255);
}

body.is-blue {
  background-color: yellow;
}

h1 {
  padding-top: 120px;
  color: yellow;
  transition: color 0.3s;
  font-size: 28vw;
  text-align: left;
  position: relative;
  font-family: "SuisseBPIntl-Bold";
  line-height: 24vw;
}

.is-blue h1 {
  color: rgb(247, 0, 255);
  padding-top: 120px;
  transition: color 0.3s;
  font-size: 11.5vw;
  text-align: left;
  position: relative;
  font-family: "SuisseBPIntl-Bold";
  line-height: 10vw;
}



h1:hover {
  animation: vibrate 0.3s infinite; /* Ajoute l'animation au survol */
}

@keyframes vibrate {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(2px);
  }
  75% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

h2 {
  font-size: 50px;
  margin: 0;
}

.fixed-bottom-center {
  position: fixed; /* Fixe l'élément par rapport à la fenêtre de visualisation */
  bottom: 0; /* Place l'élément en bas de la fenêtre */
  left: 50%; /* Centre l'élément horizontalement */
  transform: translateX(-50%);
  text-align: center;
  color: yellow;
  font-family: "SuisseBPIntl-Medium", sans-serif;
  font-size: 20px;
  padding: 10px; /* Ajoute du padding pour le confort visuel */
  text-decoration: none; /* Enlève le soulignement par défaut des liens */
  width: 100%; /* Assurez-vous que le lien est centré */
  box-sizing: border-box; /* Inclut le padding et la bordure dans la largeur totale */
  z-index: 1000;
}

.is-blue .fixed-bottom-center {
  color: rgb(247, 0, 255);
}

.fixed-bottom-center:hover {
  text-decoration: underline; /* Ajout d'un effet visuel au survol */
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  z-index: 20;
}

.button {
  all: unset;
  font-family: "SuisseBPIntl-Medium", sans-serif;
  font-size: 30px;
  color: rgb(235, 235, 235);
  width: 130px;
  height: 130px;
  border-radius: 100%;
  background-color: blue;
  animation: vibrate 0.3s infinite; /* Ajoute l'animation de vibration */
}

.button:hover {
  animation: unset; /* Désactive l'animation au survol */
}

.button.stop:hover {
  background-color: yellow;
}

.is-blue .button {
  background-color: blue;
}

.is-blue .button:hover {
  background-color: rgb(247, 0, 255);
}