body {
    margin: 0;
    padding: 0;
    background-image: url('hatsune2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
}

.content {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

h1 {
    color: #39c5bb;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

p {
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Lien de retour vers la page principale */
.back-link {
    display: inline-block;
    color: #39c5bb;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 2px solid #39c5bb;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #39c5bb;
    color: white;
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
}
/* Exemple pour le bloc qui entoure ton texte (ajuste le sélecteur selon ta page) */
.bio-section {
  background-color: rgba(255, 240, 245, 0.8); /* rose pâle translucide */
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(3px); /* floute un peu le fond derrière */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* petite ombre portée */
}

/* Pour le texte */
.bio-section p {
  color: #4b004b; /* couleur foncée mais douce */
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7); /* légère ombre blanche */
  line-height: 1.6;
}
