/* Stile generale */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
}

/* Logo */
.logo {
    max-width: 250px;
    height: auto;
}

/* Sezioni generali */
.content {
    padding: 20px;
}

/* Footer */
footer {
    padding: 10px;
    font-size: 14px;
    opacity: 0.7;
    background-color: #111;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
