.banner {
    background-color: navy;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    position: relative;
}

.banner h1 {
    flex: 1;
    text-align: center;
    font-size: 3rem;
}

.logo-container {
    position: absolute;
    right: 10px;
    top: 10px;
}

.logo {
    max-height: 90px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .logo-container {
        position: static;
        text-align: center;
        margin-top: 10px;
    }

    .banner {
        flex-direction: column;
        height: auto;
    }

    .banner h1 {
        font-size: 1.5rem;
    }

    .logo {
        max-height: 60px;
    }
}
