html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/DigitalRoadBlock.com.webp') no-repeat center center fixed; 
    background-size: cover;
}

#iisg-page {
    /* width: 80vw; */
    max-width: 1200px;
    margin: auto;
    padding: 2vw;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 1vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#iisg-content {
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    #iisg-page {
        width: 90vw;
        padding: 3vw;
    }

    #iisg-content h1 {
        font-size: 5vw; /* Increased font size for smaller screens */
        min-font-size: 16px; /* Set a minimum font size */
    }
}
