#griglia {
    display: none;
    grid-template-columns: repeat(7, 1fr);
    width: 25%;
    background-color: lightblue;
    gap: 1px;
}

#griglia > div {
    aspect-ratio: 1 / 1;
    border: 1px solid black;
}

.rosso {
    background-color: red;
}

.giallo {
    background-color: yellow;
}

#submit p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 300px; /* scegli tu */
}

#submit {
    width: 300px;
    border: 1px solid black;
    padding: 10px;
    background-color: rgb(127, 245, 127);
}

.invalido {
    background-color: orange;
}

body {
    display: flex;
}

#classifica {
    display: none;
    background-color: rgb(255, 255, 162);
    flex-basis: 15%;
    text-align: left;
    padding-left: 50px;
    flex-direction: column;
    justify-content: center;
    font-size: 1.5rem;
}