body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.container {
  padding: 20px;
  text-align: center;    
  z-index: 10;
}

#combinaisons {
  position: relative;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-container {
  display: none;
  padding: 40px;
  text-align: center;
  max-width: 800px;
}

.grid-container:last-child {
  display: block; 
  animation: fadeIn 0.5s ease-out;
}

.numero {
  display: none; 
}

.phrase {
  font-size: clamp(1.5rem, 5vw, 3rem);
  line-height: 1.3;
  font-weight: bold;
}

button {
  padding: 10px 20px;
  border: solid 1px black;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/*Projet fini*/