body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: #141414; /* Colore di sfondo di base */
}

/* Sfondo animato con particelle */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 1px, transparent 1px),
                radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px, 100px 100px;
    animation: moveParticles 15s linear infinite;
    z-index: -1;
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

img {
    max-width: 300px;
    margin-bottom: 0px;
    animation: fadeIn 2s ease;
}

.container {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease-out;
    z-index: 1;
}

.container h1 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #333;
}

.container p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.container p strong {
    color: #222;
}

footer {
    position: relative;
    bottom: 20px;
    font-size: 12px;
    color: #aaa;
    margin-top:2rem;
    text-align: center;
}
footer a{
    color: #fff !important;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
