body {
    font-family: "monospace";
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color:#fffae9;
}

#popup {
    display:none; 
    justify-content:center; 
    align-items:center;
}

#win-alert {
    background:white; 
    padding:2rem; 
    border-radius:10px; 
    text-align:center;
}

#title {
    margin-top: 5vh;
}

/* S'applique à tous les éléments de la liste des conditons */
#condition-list > * {
    margin: 1vh 0;
}

.condition {
    width: 90vw;
    padding: 1vh;

    border: 2px solid;
    border-radius: 20px;
}

/* Bouton d'indice */
.hint-button {
  padding: 0.5rem 1rem;
  background-color: #f9efb9;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  
  border: 1px solid black;
  border-radius: 8px;

  margin-bottom: 1vh;
}

.hint-button:hover {
  transform: translateY(-2px);
}

#password {
    height:150px;
    width:1000px;
    font-size:30pt;
    transition: 180ms box-shadow ease-in-out;
}

#password:focus{
    border-color: hsl(var(--input-focus-h), var(--input-focus-s), var(--input-focus-l));
    outline: 3px solid transparent;
}