body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: url('https://www.goodfreephotos.com/albums/united-states/new-york/new-york-city/new-york-cityscape-with-lighted-up-skyscrapers.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    border: 1px solid #fff;
    padding: 20px;
    border-radius: 10px;
    background: rgba(146, 146, 146, 0.7);
    backdrop-filter: blur(10px);
}
.header {
    margin-bottom: 20px;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #fff200;
}

.bio {
    font-size: 1.2em;
}

.bio p {
    margin: 10px 0;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #0ff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.5em;
    position: relative;
}

.social-icons a:hover {
    color: #fff;
}

.social-icons a .tooltip {
    visibility: hidden;
    width: 80px; /* Riduce la larghezza del tooltip */
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 2px 5px; /* Riduce il padding del tooltip */
    font-size: 0.8em; /* Riduce la dimensione del font del tooltip */
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Posiziona il tooltip sopra il bottone */
    left: 50%;
    margin-left: -40px; /* Centra il tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

.social-icons a:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

@keyframes neon {
    0%, 100% {
        text-shadow: 
            0 0 5px #fff200,
            0 0 10px #fff200,
            0 0 20px #fff200,
            0 0 40px #fff200,
            0 0 80px #fff200,
            0 0 90px #fff200,
            0 0 100px #fff200,
            0 0 150px #fff200;
    }
    50% {
        text-shadow: 
            0 0 2px #fff200,
            0 0 4px #fff200,
            0 0 8px #fff200,
            0 0 16px #fff200,
            0 0 32px #fff200,
            0 0 64px #fff200,
            0 0 72px #fff200,
            0 0 80px #fff200;
    }
}
.header h1 {
    animation: neon 1.5s ease-in-out infinite alternate;
}
