body{
  font-size: 16px;
  margin: 1%;
}

h1{
  font-size: 175%;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  /* height: 100%; */
}

.generic-flex-item {
  flex: 1;
}

.head-wrapper {
  order: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #54676e;
  color: #d3dfe3;
}

.title {
  display: flex;
  justify-content: flex-start;
  flex: 1;
  order: 1;
  margin-left: 5%;
}

.title #header-logo {
  margin-right: 10%;
}

.navigation-wrapper {
  flex: 1;
  order: 2;
  display: flex;
  justify-content: flex-end;
}

.nav-side-wrapper {
  display: flex;
  margin: 0;
  margin-right: 5%;
  justify-content: flex-end;
  width: 75%;
}

.navigation {
  width: 100%;
  display: flex;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  list-style-type: none;
  justify-content: flex-end;
}

#nav-side {
  /* display: flex; */
}

.nav-item {
  font-size: 125%;
  flex: 1;
}

.nav-item:hover{
  background-color: #b2dfee;
  color: blue:
}

#navigation-drop-icon {
  display: none !important;
}

#input-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  order: 2;
}

#input-container p {

}

#input-container input {
  flex:1;
}

#response {
  order: 4;
}

#button-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  order: 3;
}

#button-container .button {
  background-color: #f1f4f2;
  margin: 1%;
  font-size: 90%;
}

#button-container .button:hover{
  background-color: #b2dfee;
}

.button {
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  padding: 2.5% 5% 2.5% 5%;
}

.footer-wrapper {
  order: 5;
  display: flex;
  background-color: #54676e;
  color: #d3dfe3;
}

.copyright {
  align-self: flex-start;
  font-size: 80%;
}

.footer-links-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%
}

.footer-links-container {
  display: flex;
  justify-content: flex-end;
  width: 50%
}

.footer-links-container > a {
  text-decoration: none;
  color: #d3dfe3;
  flex:1;
  font-size: 90%;
}

@media only screen and (max-width: 600px) {
  .title #header-title {
    display: none;
  }

  .navigation-wrapper {
    font-size: 150%;
    align-items: center;
    justify-content: flex-end;
  }

  .nav-side-wrapper {
    overflow-x: hidden;
    flex-direction: column;
    justify-content: center;
    background: #54676e;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    margin: 0 0 0 0;
    height: 100%;
    width: 0%;

    position: absolute;
    top: 0;
    right:0;
    z-index: 1;

    transition: all 0.2s linear;
  }

  .show-nav-menu {
    width: 40%;
    transition: all 0.2s linear;
   }

  .navigation .button {
    padding: 0 0 0 0;
    margin: 2% 2% 2% 2%;
  }

  .navigation .close-nav {
    align-self: flex-start;
  }

  .navigation {
    flex-direction: column;
  }

  #navigation-drop-icon {
    font-size: 120% !important;
    display: flex !important;
    margin-right: 10%;
    cursor: pointer;
  }

  .nav-item {
    align-self: center;
  }

  #button-container {
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
  }

  #button-container .button {
    width: 90%;
    margin: 1%;
  }
}
