.background-imageRooms {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/rooms/DSC_1072.jpg");
    /* Adjust the path to match the location of your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    /* Adjust the opacity value as needed (0 to 1) */
    z-index: -1;
    /* Ensure the background image is behind other content */
}

h2 {
    align-items: start;
    word-wrap: break-word;
    font-size: 0.8em;

}

.Gallery {
    display: flex;
    justify-content: center;
    /* Horizontally center align items */
    align-items: center;
    /* Vertically center align items */
    flex-wrap: wrap;
    margin-top: 2%;
    font-size: 2em;
    padding: 0 4px;
    width: 100%;
    /* Ensure full width */
}

.row {
    display: flex;
    justify-content: center;
    
    margin-left: 10%;
    width: 80%;
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
    display: inline;
    
    flex: 25%;
    width: 10%;

    padding: 0 4px;
}

.column img {
    
    margin-top: 8px;
    vertical-align: middle;
    width: 70%;
}

.rooms {
    font-size: 1em;
    
}

/* Responsive layout - makes a two column-layout instead of four columns */

@media screen and (max-width: 800px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}