#holder {
    background-color: #1A1918;
    display: flex;
    flex-direction: column;
    height: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
main{
    height: auto;
}
h1, h2, .ich {
    color: #b3afaa;
}
h1{
    padding-top: 5rem;
}
.ich{
    padding-bottom: 3rem;
  
}
.frage{
    font-size: 1rem;
}
/* Navigation */
nav ul {
    width: 100%;
    height: 4rem;
    background-color: #1A1918; /* Fond de la navigation noir */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  
}
nav ul li {
    list-style: none;
}
li a{
    flex-wrap: wrap; 
}

nav ul li a {
    display: inline-block;
    padding: 10px 20px;
    background-color: black; /* Fond noir pour le bouton */
    color: #b3afaa; /* Couleur du texte */
    text-decoration: none;
    border-radius: 20px; /* Bords arrondis */
    font-size: 16px;
    font-weight: bold;
    border: 2px solid #b3afaa; /* Ajoute une bordure de la même couleur */
    transition: all 0.3s ease-in-out;
}


nav ul li a:hover {
    background-color: #b3afaa; /* Change le fond en beige clair */
    color: black; /* Change la couleur du texte */
}


.image {
    max-width: 60%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.bild {
    width: 50%; /* Réduit la taille de l'image à 50% de son conteneur */
    max-width: 350px; /* Taille maximale pour éviter qu'elle ne devienne trop grande */
    height: auto; /* Garde le ratio d'origine */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.cvbild {
    width: 50%;  /* Réduit la largeur de l'image */
    max-width: 200px; /* Taille maximale */
    height: auto; /* Garde le ratio */
    border-radius: 10px; /* Arrondi les bords */
    display: block;
    margin: 0 auto; /* Centre l'image */
 
}

.form {
    border-radius: 10px; 
    height: auto;
 
}

h1{
    text-align: center;
    }
h2,.ich{
    text-align: center;
    }

.p1{
    color:  #b3afaa;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    padding-top: 2rem;  
} 
.p2{
    color:  #b3afaa;
    font-size: 1.5rem;
    display: flex;
    justify-content: center; 
    padding-bottom: 1rem; 
}
.p3{
   color:  #b3afaa;
   font-size: 1.2rem;
   display: flex;
   justify-content: center; 
}
.übermich1{
    color:  #b3afaa;
    font-size: 1.2rem;
    cursor: pointer;
}
.übermich {
        border: 2px solid #b3afaa;;
        padding: 10px; 
        display: inline-block;
        border-radius: 10px; 
        width: 30rem;
    }
.ausbildung1{
    color:  #b3afaa;
    font-size: 1.2rem;
    cursor: pointer;
}
.ausbildung {
    border: 2px solid  #b3afaa;;
    padding: 10px; 
    display: inline-block;
    border-radius: 10px; 
    width: 30rem;
}
.erfahrung1{
    color:  #b3afaa;
    font-size: 1.2rem;
    cursor: pointer;
}
.erfahrung{
    border: 2px solid #b3afaa;;
    padding: 10px; 
    display: inline-block; 
    border-radius: 10px; 
    width: 30rem;
}
.sprachen1{
    color:  #b3afaa;
    font-size: 1.2rem;
    cursor: pointer;
}
.sprachen{
    border: 2px solid #b3afaa;;
    padding: 10px; 
    display: inline-block; 
    border-radius: 10px;
    width: 30rem; 
}
.hobbys1{
    color:  #b3afaa;
    font-size: 1.2rem; 
    cursor: pointer; 
}
.hobbys{
    border: 2px solid #b3afaa;
    padding: 10px; 
    display: inline-block;
    border-radius: 10px; 
    width: 30rem; 
}
.toutmoi{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.übermichnav{
   padding-bottom: 5rem; 
}
/* Appliquer l'effet hover seulement aux h2 qui ne sont pas .ich */
h2:not(.ich) {
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

h2:not(.ich):hover {
    color: rgb(180, 152, 13);
}

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1A1918; 
    color: #b3afaa;
    text-align: center;
    
    
}


    @media screen and (max-width: 450px) {
    }

        
     @media screen and (min-width: 800px) {
        
        h1{
            font-size: 3rem;
        }
        h2{
            font-size: 2rem;
        }
        nav ul li a {
            padding: 10px 30px;
            font-size: 20px;
        }
        .cvbild{
            width: 50%;
            }
    }

