.img-container {
    text-align: center;
    padding: 30px;
    width: auto;
    height: auto;
}

.image-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.image-collage img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Styles for Sticky Menu */
.navbar {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.navbar a {
    margin: 0 15px;
    padding: 10px 20px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar a:hover {
    background-color: #f9f9f9;
    color: #333;
    border-radius: 5px;
}

body {
    margin: 0;
    padding-top: 60px; /* Adjust based on the height of your navbar */
    background-color: white;
    font-family: 'Roboto', sans-serif;
}

/* Additional styles to align with evidence-music.ch */
.navbar a.active {
    background-color: #444;
    color: #fff;
    border-radius: 5px;
}

/* Slide-in animation */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in {
    animation: slideIn 1s ease-out;
}