/* Root variables for sizes */
:root {
  --header-height: 60px;
  --footer-height: 50px;
}

/* Reset defaults */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
}

body {
  font-family: Arial, sans-serif;  
  display: flex;
  justify-content: center;
  align-items: center; /* Ensures the content stretches vertically */
	background-color: #A9A7A6;
}

.page-image {	
	height: 90%;
	width: 90%;
	margin: 5%;
}

