body {
  margin: 0;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
}

nav {
  padding: 10px 30px;
  background-color: rgb(37, 56, 85);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
nav a {
  color: #ffffff;
  text-decoration: none;
}

nav h2,
h3 {
  margin: 0;
}

nav > .site-title {
  font-size: 20px;
  font-weight: bolder;
  display: flex;
  flex-decoration: row;
  justify-content: center;
  align-items: center;
}
nav > .site-title > .logo {
  max-width: 75px;
  max-height: 75px;
  margin-right: 8px;
}
nav > .site-title > hr {
  margin: 0;
}

nav > #nav-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
nav > #nav-links a {
  padding: 15px;
  font-size: 24px;
}
nav > #nav-links a.router-link-exact-active {
  font-weight: bold;
  text-decoration: underline;
}

@media (min-width: 600px) {
  nav {
    flex-direction: row;
  }
}

footer {
  padding: 30px;
  background-color: rgb(37, 56, 85);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
footer > #footer-links {
  margin-bottom: 10px;
}
footer a {
  color: #ffffff;
  text-decoration: none;
  padding: 15px;
}
footer p {
  margin: 0;
  color: #ffffff;
}

.banner {
  position: relative;
  width: 100%;
}

.banner > .hero-container {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
}

.banner > .hero-container .backdrop {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
.banner > .hero-container .backdrop > .title {
  margin: 0;
  font-size: 24px;
}
.banner > .hero-container .backdrop > .subTitle {
  margin: 0;
  display: none;
}

.tag-line {
  margin: 50px 0;
}
.highlight-box {
  box-sizing: border-box;
}

.highlight-box > .highlight-box-container {
  border: 1px solid rgb(37, 56, 85);
  max-width: 300px;
  height: 100%;
  margin: 0 auto;
}

.highlight-box > .highlight-box-container .highlight-image-container {
  position: relative;
}
.highlight-box > .highlight-box-container .highlight-image-container > img {
  border-bottom: 3px solid rgb(37, 56, 85);
}

.icon {
  width: 60px;
  height: 60px;
  padding: 10px;
  background: rgb(37, 56, 85);
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 50%);
  border: 2px solid black;
  border-radius: 30px;
  display: block;
}

.icon > img {
  width: 35px;
  height: 35px;
  margin: 0 auto;
  filter: invert(1);
}

.highlight-box > .highlight-box-container > .highlight-content-container {
  margin-top: 20px;
  padding: 5px;
}

.about {
  margin: 40px 0;
}
.about > .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about > .image-container > img {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  border: 2px solid rgb(37, 56, 85);
}

.about > .content {
  text-align: left;
  padding: 15px;
}
.break {
  margin: 60px 0;
  border-bottom: 2px solid rgb(37, 56, 85);
}

@media (min-width: 600px) {
  .banner {
    position: relative;
    width: 100%;
  }
  .banner > img {
    display: block;
    width: 100%;
    height: auto;
  }
  .banner > .hero-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-content: center;
  }

  .banner > .hero-container > .backdrop {
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
  }

  .banner > .hero-container > .backdrop > .title {
    font-size: 32px;
  }
  .banner > .hero-container > .backdrop > .subTitle {
    font-size: 18px;
    display: block;
  }
}
