body {
    background-color: #212529;
    font-family: Verdana, Arial, sans-serif;
	color: #f8f9fa;
}

.hero {
    min-height: 60dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.button {
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.3s;
}

.button:hover {
    background-color: #007bff;
    transform: scale(1.05);
}

.image-container {
    margin: 20px 0;
}

.content {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #343a40;
    color: white;
}

/* Style per il div modale */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: auto;
    max-height: 80%;
    overflow-y: auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-button {
    cursor: pointer;
    font-size: 1.5em;
    color: #dc3545; /* Rosso */
}

/* Aggiunta stili per il contenuto del modale */
.modal-content {
    margin-top: 20px;
}