html {
  hyphens: auto;
}

body {
  background-color: #fcfcfc;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

main h1 {
  text-align: center;
}

main h2,
main h3 {
  text-transform: uppercase;
  text-align: center;
}

main h2 {
  font-size: 1.64rem;
  margin: 1.093rem 0 0.656rem;
}

main h3 {
  font-size: 1.15rem;
  margin: 0 0 0.46rem;
}

main h3.head {
  margin-top: 20px;
  margin-bottom: 35px;
}

header a {
  text-transform: uppercase;
}

footer a {
  margin-left: 1em;
}

strong {
  font-weight: 700;
}

p {
  text-align: justify;
}

.justify {
  text-align: justify;
}

.small-hr {
  width: 50px;
  margin-top: 20px;
}

.larger-text {
  font-size: 130%;
}

.round-corners {
  border-radius: 5px;
}

ul.disc-list li {
  list-style-type: disc;
}

/* Card title h2 should not be uppercased */
.card-title {
  text-transform: none;
  text-align: left;
  margin-top: 0;
}

.intro {
  padding: 8%;
}

.intro .logo-container {
  display: inline-block;
  padding: 20px;
  margin: 0;
  line-height: 1;
  font-size: 1rem;
}

/* Active navigation link style */
nav a.active {
  font-weight: bold;
  position: relative;

  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: white;
  }
}
