html, body {
  position: relative;
  height: 100%;
}

body {
  padding-top: 3.5rem; /* Margin top by nav bar */
  padding-bottom: 3.5rem; /* Margin bottom by footer height */

  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
  background-color: #f5f5f5;
}

.footer a {
   color: #000;
}

.container-fluid {
  height: 100%;
  padding: 0 24px 40px;
  box-sizing: border-box;
}

.form-group {
  height: 100%;
}

.form-group textarea {
  height: 100%;
	margin: 0.5em 0px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #393f46;
  color: #a9b7c6 !important;
  border: 1px solid #21323e;
  font-family: 'Inconsolata', monospace;
  box-shadow: rgba(17, 23, 30, 0.45) 0px 12px 40px !important;
}

pre[class*="language-"]:before,
pre[class*="language-"]:after {
    display: none;
}

.footer-dark {
  background: #212529;
}