body {
    margin: 0;
    font-family:"Consolas", "Arial", sans-serif;
    background-color: #8b2835; /* change order of stills, should fix the height of really tall stills*/
    color:#000000;
    
}

h1 {
    margin-bottom: 2rem;
}

/* === navigation === */
nav {
    background-color: #909192;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: mediumblue;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:visited {
  color: indigo;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* === main === */
.stills-gallery {
    padding: 2rem;
    text-align: center;
}

/* === layout=== */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 1rem; /* spacing between images */
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* === for phones === */
@media (max-width: 900px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}