/* styles.css */

body {
  margin: 40;
  padding: 40;
  display: flex;
  justify-content: center; /* center the page content */
  background-color: #222222; /* optional: background for the whole page */
	/*
	background-image: url(http://danwattfilm.com/images/starBackground.jpg);
	background-position: left top;
	background-repeat: repeat;
	*/
}

.page {
  width: 61.8%;
  border: 0px double #000000; /* black border */
  background-color: #eeece2;
  padding: 20px; /* optional: padding inside the page */
  box-sizing: border-box;
  border-radius: 25px; /* ? Rounded corners */
}

.logo-image {
      width: 80%;
      height: auto; /* maintains aspect ratio */
      max-width: 400px; /* optional: set max width */
      display: block;
      margin: 5; 
    }