<style>
.header-banner {
width: 100%;
max-height: 100px;
background-color: #000; /* bisa diganti sesuai tema */
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
padding: 5px 10px;
}
.header-banner img {
max-height: 90px;
height: auto;
width: auto;
}
@media (max-width: 768px) {
.header-banner {
max-height: 70px;
padding: 5px;
}
.header-banner img {
max-height: 60px;
}
}
</style>
<div class="header-banner">
<img src="https://i.imgur.com/jdRZkgQ.png" alt="Header Banner">
</div>