html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.split {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    transition: 0.5s;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
}

.left {
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/dancing-image-main.jpeg') center center / cover no-repeat;
}

.right {
    right: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/programming-image-main.jpeg') center center / cover no-repeat;
}

.split:hover {
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .split {
        width: 100%;
        height: 50%;
    }

    .left {
        top: 0;
        left: 0;
    }

    .right {
        top: 50%;
        left: 0;
    }
}

.landing-label {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, color 0.3s ease;
}

.split:hover .landing-label {
    transform: scale(1.4);
    color: #f8f9fa;
}