body {
  background-color: black;
  color: white;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 4px double white;
  box-sizing: border-box;
}
.header {
  padding: 10px;
  border: 4px double white;
  background-color: black;
  color: rgb(255, 255, 255);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  height: 100%;
}
.navcolumn {
  flex-basis: 75%;
  min-height: 500px;
  border: 4px double white;
  box-sizing: border-box;
  padding: 10px 0px;
}
.column {
  flex-basis: 75%;
  min-height: 500px;
  border: 4px double white;
  box-sizing: border-box;
  padding: 10px;
}
.nav {
  background-color: rgb(0, 0, 0);
  flex-basis: 25%;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav button {
  padding: 10px 0px;
  border: none;
  background-color: black;
  color: rgb(236, 224, 224);
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all .75s;
  width: 100%;
}
.nav button:hover {
  background-color: rgb(24, 23, 23);
  color: rgb(224, 209, 209);
}
.nav button:active {
  background-color: rgb(29, 26, 26);
  color: rgb(216, 208, 208);
  animation: flash 0.5s;
}
@keyframes flash {
  0% { background-color: white; color: black; }
  50% { background-color: black; color: white; }
  100% { background-color: white; color: black; }
}
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10%;
  margin-right: 0px;
}
.social-icons img {
  margin: 0 10px;
  height: 25px;
}
