body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    position: relative;
    padding: 20px 0 10px;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 210px;
}

/* Logo links oben */
.logo {
    position: absolute;
    left: 20px;
    top: 20px;
    height: 200px;
    width: auto;
}

/* Schriftzug oben mittig */
.schriftzug {
    display: block;
    margin: 0 auto;
    height: 150px;
    width: auto;
}

header p {
    text-align: center;
    margin: 5px 0 0;
    font-style: italic;
    color: #555;
    font-size: 30px;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #333;
}
