﻿body {
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.screenshot {
    width: 300px;
    text-align: center;
}

.screenshot img {
    max-width: 100%;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

.screenshot img:hover {
    transform: scale(1.05);
}

