.background {
  background: url(../img/background-flipped.jpg), url(../img/background.jfif);
  background-position: bottom, top;
  background-blend-mode: lighten;
}

.infoBlockTop {
  text-align: center;
  font-size: larger;
  margin-bottom: 16px;
}

.name {
  line-height: 1;
  font-family: compendium, sans-serif;
  font-size: 60px;
  font-weight: normal;
  padding-top: 50px;
  padding-bottom: 10px;
}

.container {
  width: 70%;
  margin: auto;
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.infoBlockBottom {
  padding-bottom: 80px;
}

.center-item {
  margin: 0 6px;
}

.date {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

.navbar {
  list-style-type: none;
  list-style: none;
}

.middlenav {
  margin: 16px 0;
  padding: 0;
  overflow: hidden;
  justify-content: center;
}

.navbar a {
  color: antiquewhite;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

ul.middlenav {
  display: flex;
}

ul.middlenav li {
  float: left;
  border-right: 1px solid antiquewhite;
}
ul.navbar li:last-child {
  border-right: none;
}

ul.navbar li a:hover:not(.active-page) {
  color: coral;
}

.active-page a {
  color: coral;
  border-bottom: 1px solid;
}

/* [ON BIG SCREEN] */
/* Wrapper */
#menu {
  width: 150px;
  position: fixed;
  top: 0;
  overflow-y: auto;
}

/* Hide Hamburger */
#menu label,
#hamburger {
  display: none;
}

/* Horizontal Menu Items */
.pure-menu-list {
  display: none;
  background: rgba(0, 0, 0, 0.7);
}
.pure-menu-list a {
  width: 20%; /* 100% / 5 tabs = 20% */
  padding: 10px;
  text-decoration: none;
  text-align: center;
  color: antiquewhite;
}

.pure-menu-selected a {
  background-color: antiquewhite;
  color: coral;
}

.pure-menu-list a:hover:not(.active-page) {
  color: coral;
  background-color: antiquewhite;
}

.menu-link {
  position: fixed;
  display: block; /* show this only on small screens */
  top: 0;
  left: 0; /* "#menu width" */

  width: 2em;
  height: auto;
}

/* [ON SMALL SCREENS] */
@media screen and (max-width: 600px) {
  /* Show Hamburger Icon */
  #menu label {
    display: inline-block;
    color: antiquewhite;
    background: #000;
    background: rgba(0, 0, 0, 0.7);
    font-style: normal;
    z-index: 10;
    font-size: 1.2em;
    padding: 0.6em;
  }

  /* Break down menu items into vertical */
  .pure-menu-list a {
    box-sizing: border-box;
    display: block;
    width: 100%;
    border-top: 1px solid #333;
  }

  /* Toggle Show/Hide Menu */
  .pure-menu-list {
    display: none;
  }
  #menu input:checked ~ .pure-menu-list {
    display: block;
  }
}

/* hide when widith is in phone */
@media screen and (max-width: 600px) {
  ul.middlenav {
    display: none;
  }
}

@media screen and (max-width: 440px) {
  .date {
    flex-direction: column;
  }
}
