html {
  font-size: 10px; /* px means "pixels": the base font size is now 10 pixels high */
  font-family: "Open Sans", sans-serif; /* this should be the rest of the output you got from Google Fonts */
  /*background-color: #7090a0;*/
  background-color: #8090a0;
  height: 100%;
}

h1 {
  font-size: 60px;
  text-align: center;
}

p,
li {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
}

body {
  width: 900px;
  min-height: 100%;
  margin: 0 auto;
  /*background-color: #f0e8a0;*/
  background-color: #e8f0e8;
  padding: 0 20px 20px 20px;
  border: 5px solid black;
}

h1 {
  margin: 0;
  padding: 20px 0;
  color: #00539f;
  text-shadow: 3px 3px 1px black;
}

.begin-img {
  display: block;
  margin: 0 auto;
  max-width: 50%;
  height: auto;
}

/* || header layout */

nav, article, aside, footer {
  /*background-color: white;*/
  padding: 1%;
}

nav {
  height: 50px;
  /*background-color: #f0e8a0;*/
  background-color: #e8f0e8;
  display: flex;
  margin-bottom: 10px;
  border: 1px solid black;
}

nav ul {
  padding: 0;
  list-style-type: none;
  flex: 2;
  display: flex;
}

nav li {
  display: inline;
  text-align: center;
  flex: 1;
}

nav a {
  display: inline-block;
  font-size: 2rem;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
}

nav form {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2em;
}

/* || main layout */

main {
  display: flex;
}

article {
  flex: 4;
}

aside {
  flex: 1;
  margin-left: 5px;
  /*background-color: #ff80ff;*/
}

aside li {
  padding-bottom: 10px;
}

footer {
  display: flex;
  margin-top: 10px;
  padding-top: 20px;
}

.left-side {
  flex: 4;
}

.visitor-count {
  flex: 1;
  margin-left: 5px;
  text-align: right;
  /*color: #f0e8a0;*/
  color: #e8f0e8;
}

.count-img {
  display: block;
  margin: 0 auto;
  max-width: 10%;
  height: auto;
}

