body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 95vh;
    background-color: #f9f9f9;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    max-width: 95%;
    width: 95%;
    height: 80vh;
    align-self: center;
}

.gallery-item {
    position: relative;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #eee;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
    border-color: #333;
}

h1 {
    text-align: center;
    width: 100%;
}