body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

#container {
    display: flex;
    width: 100vw;  /* Full width of the viewport */
    height: 100vh; /* Full height of the viewport */
}

.panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

#left-panel {
    background-color: lightgreen;
}

#right-panel {
    background-color: white;
}

.text {
    margin: 0;
    width: 100%;
    height: auto;
    white-space: normal; /* Allow wrapping */
    font-size: 5vw; /* Base size */
    line-height: 1.2; /* Adjust for proper line height */
}

.arrow {
    position: absolute;
    top: 10px;
    font-size: 4rem;  /* Larger arrows */
    font-weight: bold;
    width: 100%;  /* Makes the arrow span across the panel */
    text-align: center;  /* Centers the arrow */
}

.panel .arrow {
    pointer-events: none;  /* Ignore clicks on the arrow itself */
}
