body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f7f9fb 0%, #e0f2ff 100%);
    color: #1e293b;
    box-sizing: border-box;
    min-height: 100vh;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.uberschrieft {
    background-color: #fff;
    color: #00bcd4;
    font-size: 44px;
    text-align: center;
    padding: 36px 20px 28px 20px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(34, 34, 59, 0.10);
    margin: 40px auto 30px auto;
    max-width: 800px;
    letter-spacing: 2px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-shadow: 0 0 12px #00bcd455;
}

.uberschrieft:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(34, 34, 59, 0.18);
}

.VertexViennaLogo_Index1 {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 32px #00bcd488, 0 4px 16px rgba(34, 34, 59, 0.15);
    margin: 0 auto 30px auto;
    display: block;
    background: #0a1622;
    transition: box-shadow 0.2s, transform 0.2s;
}

.VertexViennaLogo_Index1:hover {
    box-shadow: 0 0 48px #00bcd4cc, 0 8px 32px #00bcd455;
    transform: scale(1.07);
}

.content {
    font-size: 18px;
    line-height: 1.8;
    padding: 32px 26px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(34, 34, 59, 0.08);
    color: #1e293b;
}

.content h2 {
    color: #00bcd4;
    margin-top: 24px;
}

.button_container {
    width: 100%;
    background: #101c2c;
    box-shadow: 0 -2px 32px #00bcd433;
    padding: 24px 0 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.button_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 0 12px;
    max-width: 1000px;
    margin-bottom: 10px;
}

.button {
    padding: 14px 28px;
    font-size: 18px;
    color: #00bcd4;
    background: #101c2c;
    border: 2px solid #00bcd4;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 0 12px #00bcd455;
    transition: 
        background 0.2s,
        color 0.2s,
        box-shadow 0.2s,
        transform 0.2s;
    font-weight: 600;
    letter-spacing: 1px;
}

.button:hover {
    background: #00bcd4;
    color: #101c2c;
    box-shadow: 0 0 32px #00bcd4cc, 0 4px 16px #00bcd455;
    transform: scale(1.07);
}

.footer-text {
    font-size: 15px;
    color: #00bcd4;
    text-align: center;
    animation: glow 2.5s ease-in-out infinite alternate;
    user-select: none;
    font-weight: 500;
    margin-top: 8px;
    letter-spacing: 1px;
}

@keyframes glow {
    from {
        text-shadow: 0 0 6px #00bcd455, 0 0 10px #00bcd433;
    }
    to {
        text-shadow: 0 0 14px #00bcd4aa, 0 0 28px #00bcd488;
    }
}
