#classifica {
    background-color: lightgoldenrodyellow;
    min-height: 90px;
    white-space: pre-line;
}

#contenitore {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#nome {
    background-color: lightsteelblue;
    padding: 20px;
}

.invalido {
    background-color: salmon;
}

#griglia {
    display: none;
    grid-template-columns: repeat(6, 1fr);
    background-color:chartreuse;
    width: 30rem;

}

#griglia > p {
    display: flex;

    aspect-ratio: 1/1;
    border: 1px solid black;
    margin: 0;

    text-align: center;
    justify-content: center;
    align-items: center;

    font-size: 200%;
}

.red {
    background-color: red;
}

.gray {
    background-color: gray;
}