.cover
{
  object-fit: cover;
  width:100%;
  height: 100%;
}
.coverWord
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size:20px;
  font-family: 'Press Start 2P', sans-serif;
  color: white;
}
.cover sup {
  color: white;
  position: absolute;
  bottom: 0px;
  font-family: 'Press Start 2P', sans-serif;
}

/************* NAV BAR config *************/
nav {
  position: fixed;
  z-index: 1;
  font-size:18px;
  font-family: 'Press Start 2P', cursive;
  background-color: black;
  border-right: none;
  width: 100%;
  margin-bottom: 20px;

  display: table;
  table-layout: fixed;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float:left;
  position: relative;
}
nav ul li:first-child {
  border-left: none;
}
nav ul li a {
  display: block;
  text-decoration: none;
  color: white;
  margin-right: 10px;
  line-height: 50px;
  text-align: center;
}
nav ul li a:hover
{
  background-color: #708090;
}

ul {
  display: flex;
  flex-direction: row;
}
ul li {
  flex-grow: 1;
}
/******************************************/

html, body {
  margin:0;
  padding: 0;
}
footer {
  color: white;
  text-align: center;
  font-family: Merriweather, sans-serif;
}
a {
  text-decoration: none;
  decoration: none;
  color: black;
}