body {
    font-family: "Montserrat";
    padding-bottom: 64px;
  }

  code {
    font-size: 100%;
    display: inline-block !important;
    font-size: 1.3rem;
  }

  .header {
    margin-top: 6rem;
    text-align: center;
  }

  .text-header {
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: .2rem;
    font-weight: 600;
  }

  .card {
    display: inline-block;
    height: auto;
    min-width: 32%;
    padding: 1rem 2rem;
    margin: 0.5rem 0.5rem;
    color: #0094c6;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .05rem;
    text-decoration: none;
    white-space: normal;
    background-color: #F1F1F1;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box;
  }

  .card span:nth-child(2) {
    font-weight: lighter;
  }

  .card span:nth-child(4) {
    color: black;
    font-weight: lighter;
  }

  .card:hover {
    border-color: #0079a1;
    color: #0079a1;
  }

  .version {
    font-size: 1rem;
    font-style: italic;
  }

  .description {
    font-weight: 300;
  }

  .redalert {
    border-color: crimson;
    color: crimson;
  }

  .redalert:hover {
    border-color: tomato;
    color: tomato;
  }

  /* Footer */
  body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .content {
    flex: 1;
    padding: 20px;
  }
  
  .footer {
    background-color: #f5f5f5;
    color: #08183f;
    text-align: center;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
  }