.main {
    margin: 50px auto;
    padding: 3rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 60%;
}


.t-size-header {
    font-size: 1.6rem;
    color: #1e549f; /* Hauptfarbe */
    text-align: center;
    transition: all ease-in-out 0.3s;
}
.t-size-h2 {
    font-size: 2rem;
    color: #1e549f; /* Hauptfarbe */
    text-align: center;

}

@media (max-width: 800px) {
    .main{
        width: 100%;
        max-width: 100%;
    }
}