* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.panel {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.panel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.left-panel {
    background-color: #000000;
}

.right-panel {
    background-color: #000000;
}

.divider {
    width: 1px;
    background-color: #000000;
    height: 100vh;
}

.content {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.content img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0;
    object-fit: contain;
}

.overlay-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 2em;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.05em;
    z-index: 1000;
    pointer-events: none;
    line-height: 1.2;
    min-width: 200px;
    height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
}

