body {
    font-family: Arial, sans-serif;
}

.img-grid img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 1px;
    padding: 0;
    border: 0;
}
#rotating-text {
    font-size: 1.1rem;
    background-color: rgba(0,0,0,0.1);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}
.fade-in {
    opacity: 1;
    transform: translateY(0);
}
marquee {
    font-weight: bold;
    color: #b30000;
}