
/* 
    Created on : 17-feb-2026, 12.28.00
    Author     : tore
*/


body, body.a {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: #070808; /* Sfondo nero */
    color: white;
    font-family: Arial, sans-serif;

    /* Centramento verticale e orizzontale */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.benvenuto {
    font-size: 70px;
    font-weight: bold;
    margin: 0;
}

.subtext {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

a {
    color: #ffffff;          /* testo bianco */
    text-decoration: none;   /* nessuna sottolineatura */
    font-weight: 600;        /* leggero rinforzo del peso */
    transition: opacity 0.2s ease;
    
}

/* Effetto hover elegante */
a:hover {
    opacity: 0.8;            /* leggero fade senza cambiare colore */
}

/* Effetto click */
a:active {
    opacity: 0.6;
}

.logo {
    width: 240px;
    height: 240px;
    object-fit: contain;
    margin-top: 20px;
}
