/* General Content */

html {
    height: 100%;
}

body {
    min-height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
}
nav {
    grid-row-start: 0;
    grid-row-end: 1;
}

.footer {
    grid-row-start: 2;
    grid-row-end: 3;
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: .3rem;
  }
body {
    background-color: #e9ecef;
}