* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: #000; /* Colore di fallback */
}

body {
    background-image: url('immagine.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Oscura lo sfondo */
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; 
    padding: 60px 20px; /* Margine dal bordo superiore e inferiore */
    text-align: center;
}

/* Gestione Logo */
.logo-container {
    margin-top: 20px; 
}

.logo-img {
    max-width: 200px; 
    height: auto;
}

/* Messaggio centrale */
.message-container {
    margin-bottom: 20vh; /* Sposta la scritta pił o meno verso l'alto */
}

.message-container h2 {
    font-size: clamp(2.5rem, 8vw, 4rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 10px;
}

.message-container p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .content-wrapper {
        padding: 40px 20px;
    }
    .logo-img {
        max-width: 150px;
    }
}