/* Reset some default styles */
body, h1, .galleria, #loading-placeholder, footer {
    margin: 0;
    padding: 0;
}

/* Add some basic styling */
body {
    font-family: 'Helvetica', Arial, sans-serif; /* Use Helvetica as the primary font with Arial and sans-serif as fallbacks */
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #007BFF;
}

/* Set the .galleria div to take up the entire screen */
.galleria {
    width: 100%;
    min-height: 100vh; /* 100% of the viewport height */
}

/* Style the loading placeholder */
#loading-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-size: 24px;
}

/* Style the footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}
