* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    background-image: url('sfondo.svg'); /* Inserisci il percorso dell'immagine di sfondo */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Fira Code', sans-serif;
}
/* Contenitore centrale con il messaggio */
.container {
    margin-top: 20px;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5); /* Sfondo semitrasparente per rendere il testo leggibile */
    padding: 40px;
    border-radius: 10px;
}

img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

/* Stile del titolo */
h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

/* Stile del paragrafo */
p {
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
}

a {
    font-size: 1em;
    color: #f2f2f2;
    text-decoration: none;
}


.content {
    margin-top: 20px;
    width: 50vw;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
    padding: 15px;
}
.content a, li {
    font-size: 0.9em;
    color: blue;
    text-decoration: none;
    list-style-type: none;
}

.content h4 {
    font-size: 1.2em;
    color: #f2f2f2;
}