
body {
    padding: 0;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding: 0 1rem;
    background-image: linear-gradient(to bottom right, green, yellow, blue);
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 60%;
    
}

.meFilter {
    width: 70%;
    max-width: 600px;
    margin: 0.5rem 15%;
    text-align: center;
}

.tite-text {
    margin-top: 1rem;
    text-align: center;
    vertical-align: middle;
    background: linear-gradient(to right, blue 0%, green 100%);
    -webkit-background-clip: text;
    font-size: 2rem;
    -webkit-text-fill-color: transparent;
}

.vertical-center {
    margin: 0;
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

header {
    position: absolute;
    width: 100%;
    height: 90px;
    top: 0;
    display: inline-block;
}

header li {
    vertical-align:right;
    position: relative;
    display: inline-block;
    margin: 0 5%;
}

section {
    position: absolute;
    width: 100%;
    height: calc(100% - 90px - 2rem);
    top: 90px;
    overflow-y: scroll;
}


table {
    width: 80%;
    margin: 1% 10%;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    font-size: 1.2em;
    border:1px;
}


footer {
    position: fixed;
    bottom: 0;
	width: 100%;
	text-align: center;
    background-color: darkgreen;
    color: white;
    height: 2rem;
}


footer li {
    vertical-align:central;
    position: relative;
    display: inline-block;
    margin: 0 5%;
}