body {
    margin: auto;
    padding: 0;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
}

    body.desktop-view {
        background-image: url('/Images/newpage3.jpg');
        background-repeat: no-repeat;
        background-size: cover;
    }

    body.mobile-view {
        background-image: url('/Images/newpage4.jpg');
        background-repeat: no-repeat;
        background-size: cover;
    }

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    height: 100px;
    margin: -40px;
}

.content {
    background-color: rgba(0, 0, 0, 0);
    margin: 0px;
    box-sizing: border-box;
    text-align: center;
    flex-grow: 10;
    padding: 20px;
}

    .content h1 {
        font-size: 2.5em;
        color: cadetblue;
        -webkit-text-stroke: 1px black;
        margin-top: 20px;
    }

.footer {
    background-color: rgba(0, 0, 0, 0);
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.fade-in {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 1s ease, transform 1s ease;
}

    .fade-in.active {
        opacity: 1;
        transform: translateY(0);
    }
/* Add this to your existing CSS file or in a new CSS file */
.gallery-button {
    position: fixed;
    bottom: 20%;
    left: 0px;
    z-index: 1;
}

#gallery-button {
    background-color: limegreen;
    border: none;
    padding: 10px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    width: 120px; /* Adjust the width as needed */
    height: 70px; /* Adjust the height as needed */
    border-radius: 25px; /* Makes it round */
    overflow: hidden; /* Hides any overflow */
}
/* Styles for the modal dialog */
/*.modal {
    display: none;
    position: absolute;
    z-index: 1;
    top: 150px;
    left: 20px;
    width: 90%;
    height: 70%;
    background-color: rgba(0, 0, 0, 0);
}

.modal-content {
    text-align:left;
    margin-top: 0%;
    display: flex;
    justify-content: center;
    align-items: flex-start;*/
    /*overflow:clip;*/ /* Allow for scrolling if necessary */
    /*white-space:normal;*/ /* Prevent line breaks between images */
/*}

    .modal-content img {
        max-height: 200%;
        max-width: 200%;
        margin: 10px;*/
        /*flex-shrink: 80;*/ /* Prevents images from shrinking */
        /*padding:10px;
        padding-left:10px;
    }

@media (max-width: 767px) {
    .modal-content img {
        max-width: 90%;*/ /* Adjust the width as needed for mobile devices */
        /*max-height: auto;
    }
}

.close-button {
    color: darkred;
    font-size: 96px;
    position: fixed;
    top: 40px;
    right: 180px;
    cursor: pointer;
    z-index: 1;*/
    /*border: 2px solid white;
    border-radius: 50%;*/
/*}

.full-size-image {
    max-height: 90%;
    max-width: 90%;
    margin: auto;
    display: block;
}

#fullSizeModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
}*/
/*
    #fullSizeModal .close-button {
        color: #fff;
        font-size: 36px;
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        z-index: 1;
    }
*/