/* Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/sky-grass-flat-2.webp') no-repeat center center fixed; 
/*    background: url('../images/sky-grass-flat-palm-trees.webp') no-repeat center center fixed; */ 
    
    background-size: cover;
    /*    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;*/
}

#iisg-page {
    width: 75%; /* 100% - 15% space around */
    max-width: 1200px; /* Adjust based on your content */
    margin: auto;
    padding: 30px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.7); /* Example background */
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 480px) {
    #iisg-page {
        width: 90%; /* Less space around on smaller screens */
    }
}
#iisg-content {
    text-align: center;
}
#iisg-page {
    text-align: center;
    /* Other styles */
}
