* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background: transparent;
}

body {
    font-family: Verdana;
    color: white;
}

.banner {
    width: auto;
    height: 146px;
    overflow: hidden;
    position: relative;
    border-radius: 6px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.banner img.active {
    opacity: 1;
}

.news {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.news h5 {
    color: green;
    font-size: 9px;
}

.news h3 {
    color: #ccc;
    font-size: 9px;
}