html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

#banner {
    width: 100%;
    object-fit: contain;
}

#map {
    width: 100%;
    flex: 1;
}

.marquee-container {
    width: 150px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    transform: translateX(0);
}

.marquee-animate {
    animation: scroll-text 5s linear infinite;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}