/* Layla Saunders, 18/03/2026 */
/* © wtfpl (www.wtfpl.net) */

/* variables */

:root {
  --background: #fdf6ff;
}

/* main styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    background-color: var(--background);
}

main {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 20px; /* vertical spacing between images */
    align-items: center; /* centers images horizontally */
}

.gallery img.gallery {
    max-width: 100%;
    width: 100%; /* responsive */
    height: auto;
    border-radius: 10px; /* rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* subtle shadow */
    display: block;
}
