.ilan {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 155px;
}

.marquee-content {
    position: absolute;
    display: flex;
    width: calc(200px * 12);
    animation: marquee 20s linear infinite;
}

.marquee-content img {
    width: 161px;
    margin-right: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-200px * 6));
    }
}

.left-box, .right-box {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.left-box div, .right-box div {
    background-color: pink;
    color: white;
    font-weight: bold;
    padding: 0 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    border: solid 1px white;
}

.left-box {
    margin-right: auto;
}

.right-box {
    margin-left: auto;
    align-items: flex-end;
}

.tumunu-goster {
    background: #7498b8;
    color: white;
    text-align: center;
    height: 35px;
    padding: 5px;
    border-radius: 5px;
}

.resme-tikla {
    background: #052EB1;
    color: white;
    text-align: center;
    height: 45px;
    margin-top: 15px;
    padding-top: 10px;
    border-radius: 5px;
}

.footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 15px;
    margin-top: 25px;
}
