body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Jua', sans-serif;
    overflow-x: hidden;
    background-color: #FFAADC;
}

.gallery-container {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

h2 {
    grid-column: span 2; /* Ensure the title spans across the gallery width */
    margin-top: 20px;
    font-size: 24px;
    text-align: center;
}

.gallery-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
