@font-face {
  font-family: hackerFont;
  src: url("../font/hacker.ttf");
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: black;
  overflow-x: hidden;
}

h1,
h2,
.nav-link,
span {
  font-family: hackerFont, Roboto;
}

.disabledButton {
  opacity: 0.5; /* Vous pouvez ajuster l'opacité pour le styliser davantage */
  cursor: not-allowed;
}

@keyframes blink {
  0% {
      opacity: 1;
  }
  50% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.flash-text h3 {
  animation: blink 1s infinite;
}
