/* resources/css/custom.css */



body {
    background: yellow;
}
.element {
    height: 97px;
    width: 475px;
    background: red;
}


.card {
    transition: transform 0.2s;
}
.card:hover {
    transform: translateY(-5px);
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.news-bar {
    background: #343a40;
    padding: 10px 0;
    color: white;
    margin-bottom: 20px;
    overflow: hidden;
}

/* Right to Left Ticker Styles */
.ticker-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-rtl 30s linear infinite;
    padding-left: 100%; /* Start from right */
}

.ticker-item {
    display: inline-block;
    padding: 0 30px;
    font-size: 14px;
}

/* Right to Left Animation */
@keyframes ticker-rtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Pause on hover */
.ticker-container:hover .ticker-content {
    animation-play-state: paused;
}

#clock {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: bold;
}

.element {
    height: 97px;
    width: 475px;
}



