* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #081344; /* Background color */
}

header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px; /* Adds spacing between the logo and the image container */
}

.logo {
    width: 150px; /* Adjust the size of the logo */
    height: auto;
}

.image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%; /* Container takes up 80% of the screen width */
}

.image-frame {
    width: 40%; /* Each frame takes up 40% of the container */
    border: 3px solid #333;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}
.span12 {
  width: 940px;
  align: center
}