h1{
    font-family: 'Melbourne', sans-serif;
    font-size: 48px;
    color: white;
    text-align: center;
    margin-top: 20px;
}
.Carte { 
    margin: 5% 0%;
    border-radius: 20px;
    margin: 0 auto 10vh;
    width: 80%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border:12px solid;
}
#itemList {
    max-width: 1400px;
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: scroll;
    justify-content: center;
    padding: 1%;
    display: grid;
    grid-template-columns: repeat(8, 10%);
    grid-template-rows: repeat(2, 10%);
    row-gap: 25vh;
    column-gap:2vw;
    width: 90vw;
}
.rouge {
    border-color: #ad5d5d;
}
.bleu {
    border-color: #4d5ea1;
}
.vert {
    border-color: #587a3a;
}
.item img {
    width: 100%;
    transition: all 0.3s ease;
}

input {
    width: 60%;
    height: 40px;
    border-radius: 20px;
    font-family: 'Melbourne', sans-serif;
    padding: 0 20px;
    font-size: 18px;
    border:solid 5px rgb(255, 255, 255);
    background-color: transparent;
    color: rgb(255, 255, 255);
    outline: none;
    margin-bottom: 20px;
}
::placeholder {
    color: rgb(255, 255, 255);
    opacity: 0.8;
    font-family: "Andaluz", serif;
    font-size: 16px;
}
.matiere-btn {
    flex: 0 0 9%;        /* largeur fixe environ 9% */
    padding: 10px;
    font-size: 14px;
    border-radius: 12px;
    border: 2px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .matiere-btn:hover:not(:disabled) {
    background: white;
    color: #020411;
  }
  
  .matiere-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #444;
  }
  