body {
    font-family: Arial, sans-serif;
    background-color: #DEF7DB; /* Softer background */
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(to right, #69BB70 80%, #ABFF01); /* Deep lime green to light lime green gradient */
    color: #111;
    padding: 10px;
    text-align: center;
    font-size: 18px;
}


header h1 {
    font-size: 50px; /* This increases the font size of the header text */
    margin-bottom: 0.5em; /* Adjusts the space below the header text */
}


.about {
    margin: auto;
    max-width: 800px;
}

.gallery {
    /* Default column count for mobile devices */
    column-count: 1;
    column-gap: 20px;
    padding: 40px;
}

/* Larger tablets and small desktops */
@media (min-width: 768px) {
    .gallery {
        column-count: 2;
    }
}

/* Medium Desktops */
@media (min-width: 1200px) {
    .gallery {
        column-count: 3;
    }
}

.artwork {
    break-inside: avoid; /* Prevents items from splitting across columns */
    margin-bottom: 20px; /* Adds space between items */
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
}

.artwork img {
    
    border-radius: 5px;
    width: 100%;
    height: auto;
    transition: transform 0.2s ease, z-index 0s ease; /* Add z-index transition */
}

.artwork:hover img {
    transform: scale(1.05);
    z-index: 10; /* Ensure the image is above other elements */
    position: relative; /* This is required for z-index to work */
}


.caption {
    padding: 10px;
    padding-top: 5px;
    text-align: left;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #f1f1f1; /* Light gray background */
    color: #333;
}

footer p {
    margin: 10px 0; /* Adds space between paragraphs */
}

footer a {
    color: #333;
}
