/* Reset some default styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Verdana, sans-serif;
}

/* Style the marquee container */
.marquee-container {
    overflow: hidden;
    position: relative;
    height: 100%; /* Adjust the height as needed */
    width: 800px%;
}

/* Style the marquee itself */
.marquee {
    display: flex;
    animation: marquee 40s linear infinite;
}

/* Style individual marquee items */
.marquee-item {
    color: #fff;
    padding: 20px;
    margin: 10px;
    width: 50%; /* Adjust the width as needed */
    position: relative;
    transition: transform 0.3s ease, filter 0.3s ease;
    background-size: cover;
    border-radius: 50px; /* Round border */
    height: 300px;
    display: flex;
    align-items: flex-end; /* Vertically align text at the bottom */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow for improved readability */
}

/* Style subtitles */
.subtitle {
    font-weight: bolder; /* Very bold */
    color: #fff !important;
    font-size: 15px;
}

/* Hover effect for marquee items */
.marquee-item:hover {
    transform: scale(1.1) rotateY(10deg); /* Scale and rotate on hover */
    filter: brightness(80%); /* Light blur tint effect */
}

/* Animation for the marquee */
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
