img {
    display: block;
    width: 200px
}
.text-footer {
    color: #fff
}
@media (prefers-color-scheme: light) {
    .text {
        color: #000
    }
}
@media (max-width: 750px) {
    img {
        width: 50%
    }
}
#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px
}
.image-container {
    display: flex;
    justify-content: space-between;
}
.image-box {
    flex: 1;
    margin: 10px;
    position: relative;
    overflow: hidden;
    padding-bottom: 100%; /* makes it square */
}
.image-box img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.container-iframe {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding-top: 75.5%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding-bottom: -10%;
}

.photo-container {
    display: flex;
    justify-content: space-between;
}
.photo {
    width: 30%;
    max-width: 300px;
    height: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
    transition: transform .5s;
}
.photo:hover {
    transform: scale(1.1);
}
.showPopupText {
    color: #2F73CB;
    cursor: pointer;
}

a:link {
    color: #2F73CB;
}

a:visited {
    color: #2F73CB;
}

a:hover {
    color: #263F5F;
}



html, body {
    background-color: #00002B;
    background-image: unset;
}

/*Light mode*/
@media (prefers-color-scheme: light) {
    html, body {
        background-color: #B0A2D6;
        background-image: unset;
    }
}
