.pagina {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
}

#titolo {
    font-family: Courier, monospace;
    font-size: xx-large;
    font-weight: 200;
    width: 80%;
    max-width: 450px;
    text-align: center;
}

.tabella-test{
    font-size: large;
    width: fit-content;
}

.tabella-test table{
    width: 800px;
    border: 1px solid black;
    border-radius: 7px;
    padding: 10px 10px;
    margin: 0 auto;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 40px;
}

.tabella-test td{
    padding: 20px 20px;
}

.tabella-test a {
    margin-right: auto;
    margin-top: 100px;
}

#bottone-indietro {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    background: black;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.sfondo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup {
    background: #fff;
    padding: 20px 30px;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-align: center;
}

.popup p{
    font-family: 'Gill Sans', 'Gill Sans MT';
}

.popup button {
    margin: 10px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 5px;
    color: white;
}

#si{
    background: #6f194f;
}

#no{
    background: black;
}