* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    overflow: hidden;
}

/* --- SPLIT LAYOUT --- */

.split {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    transition: 0.4s ease;
}

.left {
    background: #1a1a1a;
    color: #fff;
}

.right {
    background: #f5f5f5;
    color: #222;
}

/* Hover Effekt */
.split:hover {
    transform: scale(1.02);
}

/* --- CONTENT --- */

.content {
    text-decoration: none;
    color: inherit;
    max-width: 420px;
    display: block;
}

.icon {
    width: 90px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.link {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.desc {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* --- MOBILE --- */

@media (max-width: 900px) {
    body {
        flex-direction: column;
        height: auto;       /* <-- WICHTIG */
        overflow: visible;  /* <-- WICHTIG */
    }

    .split {
        width: 100%;
        padding: 60px 20px;
    }
}
