#main-container {
  border: 2px solid steelblue;
  height: 100%;
  display: contents;

  a:not(".btn", ".navbar-brand") {
    text-decoration: none;
    color: darkslateblue;
    text-transform: uppercase;
    font-size: 15px;
    &:hover {
      text-decoration: underline;
    }
  }
  .btn-primary {
    text-transform: uppercase;
    font-size: 15px;
    color: white;
  }
  .navbar {
    background-color: steelblue !important;
    a {
      color: aliceblue;
      text-transform: uppercase;
      font-size: 15px;
    }
    .navbar-brand {
      font-size: 20px;
      font-weight: bold;
      color: white;
    }
    li.active {
      a {
        font-weight: bold;
        color: yellow;
      }
    }
    .navbar-collapse {
      justify-content: flex-end;
    }
  }

  .header-text {
    color: darkslateblue;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 22px;
    border-bottom: 1px solid darkslateblue;

    &.normal-font {
      font-size: 16px;
    }
    &.no-underline {
      border-bottom: none;
    }
  }
  .card-body {
    table,
    td,
    tr {
      background-color: transparent;
    }
  }
}
