html, body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #222;
}
p {
  padding: 4px 0;
}

strong, b,  h1, h2, h3, h4, h5 {
  font-weight: 400;
}


h3 {
  font-size: 16px;
}

em, i {
  font-style: italic;
}

.navigation-bar {
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;

  box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
}

.navigation-bar nav {
  padding-right: 5vw;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navigation-bar nav h1 {
  margin-right: auto;
  margin-left: 20px;
  font-size: 20px;
  font-family: 'Great Vibes', 'Roboto', sans-serif;
}

.navigation-bar nav ul {
  display: flex;
  padding: 22px 0;
}

.navigation-bar nav ul li {
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0 1vw;
}

.navigation-bar nav ul li a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease-in;
}

.navigation-bar nav ul li:hover a {
  color: #088195;
}

.navigation-bar nav ul li:first-child {
  margin-left: auto;
}

.landing {
  min-height: 90vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position-y: top;

  display: flex;
  align-items: center;
}

.vertical-spacer {
  min-height: 50vh;
}

main section.home {
  background-color: #fff;
  min-height: 80vh;

  display: flex;
  align-items: center;

  padding: 96px 0;
}

main section.home h2 {
  margin-bottom: 40px;
  font-size: 64px;
  font-family: 'Great Vibes', 'Roboto', sans-serif;
}

main section.home .content {
  text-align: justify;
  max-width: 560px;

  line-height: 22px;
  font-size: 18px;

}

main section.home .wrapper {
  /* max-width: 350px; */
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  /* margin-left: 18vw; */
}

main section.home:nth-child(even) {
  background-color: #3a8b9e;
  background-color: #50a7bb;
  color: white;
}


.identity-card {
  position: relative;
  top: 100px;
  background-color: #fff;
  border-radius: 4px;

  width: 30vw;
  min-width: 340px;

  height: 50vh;
  min-height: 500px;

  margin: 64px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 
  /* angular material inspiration */
  border: 0 solid white;
  border-radius: 4px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.identity-picture {
  border: 0 solid white;
  overflow: hidden;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}

.identity-content {
  margin: 16px;
  padding: 3vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.identity-content h3 {
  text-align: center;
  margin: 20px 0;
}

.identity-content h2 {
  margin-top: 22px;
  margin-bottom: 14px;
  font-size: 24px;
  font-family: 'Great Vibes', 'Roboto', sans-serif;
}

body {
  background-image: url('/media/original_images/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-attachment: fixed;
}

footer.main-footer {
  background-color: #d9d9d9;
  display: flex;
  color: #4a4a4a;
  justify-content: space-evenly;
  padding: 10vh 13vw;
  max-height: 220px;
  flex-wrap: wrap;
}

footer.main-footer .sub-footer {
  margin: 2vh 0;
}

footer.main-footer h3 {
  margin-bottom: 12px;
}

footer .main-footer li {
  line-height: 14px;
}


@media screen and (max-width: 800px) {
  .identity-card {
    margin: 32px auto;
  }

  main section.home h2 {
    font-size: 12vw;
  }

  main section.home .wrapper {
    max-width: 80%;
    margin: 6vh auto;
  }

  footer.main-footer {
    justify-content: flex-start;
  }

}
