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

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background: url('img/home.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Sfondo semi-trasparente per una migliore leggibilità del testo */
}

.content {
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}

.icon-container {
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 20px;
    font-size: 2em;
}
