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

body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
}

.container {
    text-align: center;
}

h1 {
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 20px;
}

nav {
    margin-top: 20px;
}

ul {
    list-style-type: none;
}

li {
    display: inline;
    margin: 0 15px;
}

a {
    text-decoration: none;
    font-size: 1.2em;
    color: black;
    transition: color 0.3s;
}

a:hover {
    color: gray;
}

/* Media Query per la responsività */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5em;
    }

    li {
        display: block;
        margin: 10px 0;
    }
}