body {
  font-family: Arial, Helvetica, sans-serif;
}
.left-column {
  float: left;
  width: 49%;

}

.right-column {
  float: right;
  width: 49%;
}

.container {
  position: relative;
  text-align: center;
  color: white;
}

p {
  font-family: Tahoma, Verdana, sans-serif;
  color: black;
  font-style: italic;
  font-size: 3vw;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}

header {
  background-color: #777;
  padding: 10px;
  text-align: center;
  color: #fff;
}

.angryface {
  width: 90%;
  height: auto;
}
.quote {
  width: 80%;
}

/* Container for flexboxes */
section {
  display: -webkit-flex;
  display: flex;
}
h1 {
  color: #fff;
  padding: 1em;
}
h2,h3 {
  color: #333;
}
/* Style the navigation menu */
nav {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #ccc;
  padding: 20px;
}
/* Style the list inside the menu */
ul {
  list-style-type: none;
}
li {
  padding: .5em 0 .5em 0;
}
/* Style the content */
article {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  background-color: #fff;
  padding: 10px;
  color: #333;
}
.fileNotFound {
  background-color: #fff;
  text-align: center;
}
/* Style the footer */
footer {
  background-color: #777;
  padding: 10px;
  text-align: center;
  color: #fff;
}
/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 800px) {
}