<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.banner_container{
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    overflow: hidden;
}
.banner{
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.banner:hover {
    transform: scale(1.05);
}

@media only screen and (min-width: 800px) {
    .banner_container{
        height: auto;
    }
    .banner{
        height: auto;
        width: 100%;
        object-fit: contain;
    }
}</pre></body></html>