body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
}

/* unvisited link */
a:link {
    color: gray;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: gray;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: lightgray;
    text-decoration: none;
}

/* selected link */
a:active {
    color: orange;
    text-decoration: none;
}

main {
      flex: 1;
      display: flex;
      flex-wrap: nowrap;
}

.navbar-brand {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 42px;
  padding: 0px;
  margin: 0px;
}

.navbar {
	background-color: black !important;
	padding: 0px !important;
	margin: 0px !important;
}

.left-col {
      flex: 0 0 10%;
      background-color: #ffffff;
      border-right: 1px solid #dee2e6;
}

.left-label {
    font-family: "Slabo 27px", serif;
    font-size: 24px;
    color: black;
}

.left-link {
    font-family: "Slabo 27px", serif;
    font-size: 18px;
}
    
.center-col {
      flex: 0 0 40%;
      background-color: #ffffff;
      border-right: 1px solid #dee2e6;
      margin: 0px;
      padding: 0px;
}

.subcenter-col {
      display: none;
      background-color: white;
      margin: 0px;
      padding: 0px;
}

.right-col {
      flex: 0 0 50%;
      background-color: #ffffff;
}


.bebas-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
}

.work-label {
    font-family: "Slabo 27px", serif;
    font-size: 14px;
    color: gray;
}

.work-text {
    font-family: "Slabo 27px", serif;
    font-size: 16px;
    color: black;
}

.work-title {
    font-family: "Slabo 27px", serif;
    font-size: 24px;
    font-weight: 600;
    color: black;
}

/* backend */

 table.generic-view {
    border: 1px solid #000000;
    border-spacing: 0px;
    border-collapse: collapse;
    margin: 0px;
    padding: 0px;
    width: 100%;
    font-size: 9pt;
 }

 table.generic-view th {
    border: 1px solid #000000;
    margin: 0px;
    padding: 4px 4px 6px 4px;
    background-color: #ffffec;
    text-align: right;
    width: 20%;
    vertical-align: top;
 }

 table.generic-view td {
    border: 1px solid #999999;
    width: auto;
    margin: 0px;
    padding: 4px 4px 6px 4px;
    background-color: #ffffff;
    text-align: left;
    width: 80%;
    vertical-align: top;
 }

 table.generic-list {
    border: 1px solid #000000;
    border-spacing: 0px;
    border-collapse: collapse;
    margin: 0px;
    padding: 0px;
    font-size: 9pt;
    width: 100%;
 }

 table.generic-list th {
    border: 1px solid #000000;
    margin: 0px;
    padding: 4px 4px 6px 4px;
    background-color: #ffffec;
    text-align: left;
    vertical-align: top;
 }

 table.generic-list td {
    border: 1px solid #999999;
    width: auto;
    margin: 0px;
    padding: 4px 4px 6px 4px;
    background-color: #ffffff;
    text-align: left;
    vertical-align: top;
 }


/* end backend */

video {
	width: 100%;
	height: auto;
}

/* Hide left column on smaller or overflowed screens */
@media (max-width: 992px) {
      .left-col {
        display: none;
      }
     .center-col {
        flex: 0 0 100%;
     }
     .right-col {
	display: none;
     }
     
     .subcenter-col {
	display: block;
        flex: 0 0 100%;
     }
}

footer.navbar {
  bottom: 0;
  z-index: 1030;
}

