@font-face {
  font-family: "Notorious";
  src:
    url("fonts/super_notorious_v2.otf")
}

body {
  font-family: Notorious;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centre horizontalement */
  justify-content: center; /* Centre verticalement */
  height: 100vh;
  margin: 0;
  overflow: hidden;
  background-color: whitesmoke;
}

.main {
  position: relative;
  width: 80vw;
  height: 70vh;
  border: 1px solid black;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 10px;
  background-color: white;
  box-shadow: 3px 3px 3px lightgrey;
}

.word {
  position: absolute;
  font-size: 1.5rem;
  color: dimgrey;
  cursor: pointer;
  transition: all 0.5s ease;
  white-space: nowrap; /* Évite les sauts de ligne au sein d'un mot */
  text-shadow: greenyellow 0 0 10px;
}

.reordered {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  white-space: normal; /* Permet le retour à la ligne */
  color: black;
  text-shadow: none;
}

.reordered {
  position: relative;
  display: inline;
  margin-right: 0.7vw;
  font-size: 2rem;
}

a {
  margin-top: 20px;
  text-decoration: none;
  font-size: 18px;
  color: blue;
}

