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

.emilys-candy-regular {
  font-family: "Emilys Candy", serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: bisque;
  line-height: 280%;
}

.titre {
  background-color: rgb(255, 224, 185);
  padding: 17px 10px;
}

.box1 h1{
  font-size: clamp(1.563rem, 0.617vw + 1.447rem, 2.188rem);
}

.box2 {
  font-size: clamp(1rem, 0.556vw + 0.896rem, 1.563rem);
}

.grid-container {
  display: grid;
  grid-template-columns: auto 1fr; 
  gap: 20px;
  align-items: center;
  margin-bottom: 1em;
  margin: 27px 27px 35px;
}

.numero {
  font-family: "Audiowide", serif;
  font-size: clamp(0.625rem, 1.119vw - 0.092rem, 1.25rem);
}

.phrase {
  font-family: "Emilys Candy", serif;
  font-size: clamp(1.375rem, 1.454vw + 0.443rem, 2.188rem);
  max-width: 800px;
  margin: 0;
  margin-left: 15px;
}

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

#ensemble-title {
  animation: clignoter 3s infinite;
}

#random-ensemble{
  display: flex;
}

button {
  justify-self: end;
  background-color: rgb(255, 196, 124);
  border: none;
  color: #000;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: clamp(1rem, 0.556vw + 0.896rem, 1.563rem);
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.2s;
}

button:hover {
  transform: scale(1.04);
}
