/* Reset di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Impostazioni di base della pagina */
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenitore centrale */
.container {
    text-align: center;
    padding: 20px;
}

/* Logo */
.logo img {
    max-width: 100%;
    height: auto;
    max-height: 150px; /* Massima altezza per il logo */
}

/* Messaggio */
.message h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.message p {
    font-size: 1.2em;
    color: #666;
}

/* Media query per dispositivi mobili */
@media (max-width: 768px) {
    .message h1 {
        font-size: 1.5em;
    }

    .message p {
        font-size: 1em;
    }
}
