body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header, footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

main {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.gallery-link {
    width: 30%;
    margin: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s; /* Animation on hover */
}

.gallery-link a {
    text-decoration: none;
    color: black;
    display: block;
    text-align: center;
}

.gallery-link img {
    width: 100%;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.gallery-link span {
    display: block;
    padding: 15px;
}

.gallery-link:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

@media (max-width: 768px) {
    .gallery-link {
        width: 45%; /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .gallery-link {
        width: 90%; /* Adjust for mobile screens */
    }
}
