/* --- GENERAL --- */
body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: not-allowed;
}

/* --- BACKGROUND ---- */
img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
}

/* --- BLOC D'AFFICHAGE DU PRIX DES CRYPTO --- */
#infos_block {
  width: 600px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.701);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  font-family: "Rubik Iso", system-ui;
}

#show_price {
  font-size: 2rem;
}

select {
  width: 400px;
  height: 30px;
  font-family: "Rubik Distressed", system-ui;
  font-weight: bolder;
  font-size: 1.2rem;
}

/* --- TEXTE DEFILANT --- */
#message_marquee {
  width: 100vw;
  margin: 1em auto 2em;
  overflow: hidden;
  position: absolute;
  top: -16px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: inset 2px 2px 10px black;
}

#message_marquee h1 {
  display: inline-block;
  padding-right: 2rem;
  padding-left: 100%;
  white-space: nowrap;
  animation: defilement 5s infinite linear;
  font-family: "Rubik Iso", system-ui;
  font-size: 3rem;
  text-transform: uppercase;
  color: black;
}

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