/* Stile generale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background 0.5s ease-in-out;
    position: relative;
}

/* Effetto trasparenza per il background */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(233 240 242 / 70%); /* Colore nero con trasparenza */
    z-index: -1;
}

/* Stile per il contenuto */
.overlay {
    background-color: rgba(255, 255, 255, 0.8); /* Sfondo bianco semi-trasparente */
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2.5rem;
    color: #D2691E; /* Colore personalizzato */
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8rem;
    color: #333;
    margin-top: 20px;
}

p {
    font-size: 1.2rem;
    color: #555;
}

/* Stile per l'immagine dell'artista */
.artist-photo {
    width: 250px;
    height: auto;
    border-radius: 20px; /* Angoli arrotondati */
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.artist-photo:hover {
    transform: scale(1.05); /* Effetto ingrandimento al passaggio del mouse */
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1rem;
    }
    .artist-photo {
        width: 150px;
    }
}
