﻿body {
    margin: 0;
    background-color: #e7ba61;
    font-family: Arial, sans-serif;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    min-height: 10vh;
}

.left-pane {
    flex: 1;
    background-color: #242c4f;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.content {
    max-width: 700px;
    text-align: center;
}

.content h1,
.content p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.right-pane {
    flex: 1;
    min-height: 10vh;
    overflow: hidden;
}

    .right-pane img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Responsive para pantallas chicas */
@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }

    .right-pane,
    .left-pane {
        min-height: 10vh;
    }
}
