h1, h2 {
    margin-top: 30px;
    margin-left: 10px;
}

img {
  max-height: 256px
}

#div-title {
    background-image: url(https://img.freepik.com/foto-premium/sfondo-nero-con-un-testo-bianco-che-dice_851674-236.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px;
    color: white;
    text-align: center;
  }

table {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    table-layout: fixed;
    width: 50%;
    border-collapse: collapse;
}

table h1{
    margin-top: 0px;
    margin-left: 0px;
    color: #262626;
}

tr {
  margin-top: 30px
}

.pulsante-moderno {
    /* Stile base */
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: 	#5e86c1;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Animazioni */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pulsante-moderno:hover {
    background-color: #1b5583; /* Cambia colore al passaggio del mouse */
    transform: translateY(-2px); /* Leggero sollevamento */
}

.pulsante-moderno:active {
    background-color: #5e86c1;
    transform: translateY(0); /* Ritorno alla posizione originale */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}