header{
    padding: 100px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.header_text{
    width: 850px;
    justify-content: center;
    align-items: center;

}
.circle{
    height: 600px;
    width: 600px;

    max-height: 80vw;
    max-width: 80vw;

    overflow: hidden;
    border-radius: 50%;
    border: 20px solid var(--main-brand-color);

    display: flex;
}
.circe img{
    width: 10%;
    height: 10%;
}

html{
    scroll-behavior: smooth;
}

nav{
    margin-bottom: 120px;
}
nav ul{
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a{
    color: var(--secondary-text-color);
    text-decoration: none;
    position: relative;
    padding: 3px;
}
nav a:hover{
    color: var(--text-color);
}
nav a::after{
    content: '';
    height: 2px;
    width: 0;
    background: var(--main-brand-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 150ms ease-in-out;
}
nav a:hover::after{
    width: 100%;
}
#toggle_button{
    display: none;
}
label[for="toggle_button"]{
    display: none;
}
label[for="toggle_button"] span{
    font-size: 40px;
}
@media(max-width: 800px){
    nav{
        position: absolute;
        top: 0;
        left: 0;
        background: var(--secondary-color);
        padding: 15px;
        border-radius: 0 0 25px 0;
    }
    
    nav ul{
        display: none;
        flex-direction: column;
    }
    #toggle_button:checked ~ ul{
            display: flex;
    }
    label[for="toggle_button"]{
        display: block;
    }
}
#success.html h1{
        text-align: center;
        justify-content: center;
        align-items: center;
}

#Überschrift {
    font-size: 4rem;        /* H1-ähnliche Größe */
    font-weight: bold;      /* Fett wie H1 */
    line-height: 1.2;       /* Guter Zeilenabstand */
    margin: 0.67em 0;       /* Standard H1-Margin */
    min-height: 2.4rem;
    -webkit-text-size-adjust: 100%;  /* Verhindert automatische Anpassung */
    text-size-adjust: 100%;          /* Standard für andere Browser */
}
.typed-cursor {
    font-size: 4rem; /* Gleiche Größe wie dein Text */
    font-weight: bold; /* Optional: Fett wie H1 */
    -webkit-text-size-adjust: 100%;  /* Verhindert automatische Anpassung */
    text-size-adjust: 100%;          /* Standard für andere Browser */
}
/* iPhone spezifische Anpassungen */
@media screen and (max-width: 480px) {
    #Überschrift, .typed-cursor {
        font-size: 3rem;  /* oder 3rem für iPhone */
        min-height: 2.4rem;
        -webkit-text-size-adjust: 100%;  /* Verhindert automatische Anpassung */
    text-size-adjust: 100%;          /* Standard für andere Browser */
    }
}

/* Für sehr kleine Bildschirme */
@media screen and (max-width: 375px) {
    #Überschrift, .typed-cursor {
        font-size: 2rem;
        min-height: 2.4rem;
        -webkit-text-size-adjust: 100%;  /* Verhindert automatische Anpassung */
    text-size-adjust: 100%;          /* Standard für andere Browser */
    }
}
.Überschrift-Container {
    margin-top: 50px;
    min-height: 150px;     /* Deutlich mehr Platz */
    flex-direction: column;
}