/* v0.97u */
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  /* background-color: #328ba8; */
  background-color: #F8F8FF;
  flex-shrink: 0;
}

.topnav a {
  float: right;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color: white;
}

/* Style the picture */
.picture {
  background-color: white;
  padding: 0px;
}

/* Style the content */
.content {
  background-color: white;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 2px;
  padding-bottom: 2px;
  flex: 1 0 auto;
}

/* Style the footer */
.footer {
  background-color: #F8F8FF;
  padding: 1px;
  text-align: center;
  flex-shrink: 0;
}

.footer p {
  color: black;
}

.footer a {
  color: black;
}

/* 2 columns */
.row {
  display: -webkit-flex;
  display: flex;
  flex: 1 0 auto;
}

.column {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.column.left {
  -webkit-flex: 5;
  -ms-flex: 5;
  flex: 5;
}  
  
.column.right {
  padding-top: 40px;
   -webkit-flex: 1;
   -ms-flex: 1;
   flex: 1;
}

@media (max-width: 600px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
