body {
    background: #f8f9fa;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

h1 {
    text-align: center;
    margin-top: 30px;
    color: #444;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 50px auto;
    max-width: 1200px;
}

.image-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #222;
    transition: transform 0.2s;
}

.image-link:hover {
    transform: scale(1.05);
}

.image-link img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    background: linear-gradient(135deg, #f8f9fa 60%, #e3e6ea 100%);
    transition: box-shadow 0.3s, filter 0.3s;
    filter: drop-shadow(0 0 30px #f8f9fa) blur(1px);
}

.image-link img:hover {
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
    filter: drop-shadow(0 0 40px #e3e6ea) blur(2px);
}

.image-link span {
    margin-top: 15px;
    font-size: 1.1em;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #333;
}

        }


