body {
    margin: 0;
	
}

header {
    background-color: #000000;
    height: 30px;
    padding: 5px;
    position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
  	z-index: 1;
}

nav ul {
    list-style: none;
    margin: 10px;
    padding: 10px;
    display: flex;
	background-color: #000000;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif"
}

nav li a {
    margin: 20px;
	color: #FFFFFF;
}

.cells {
    display: flex;
	background-color: #003959;
	padding: 0;
	margin-right: auto;
}

.cell {
    padding: 0;
}

.fixed-width {
    width: 626px;
    height: 565px;
	margin-left: auto;
}

.flexible-width {
    flex-grow: 1; /* Allow this cell to grow */
}

.buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.button-image {
    display: block;
    width: 355px;
    height: 355px;
}

.button-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images fill the button */
}
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #f2f2f2;
  color: black;
  text-align: center;
  font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
  font-size: 8pt;

}
