/* CSS Document */
body {
  min-height: 100vh;
  position: relative;
  margin: 0px;
  background-color: #CCDD99;
}

footer {
  position: relative;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 50px;
  line-height: 50px; /* Vertically center the text there */
}

#main-section:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.4;
  filter:alpha(opacity=40);
  background:  linear-gradient(
      rgba(73, 148, 253, 0.4), 
      rgba(73, 148, 253, 0.4)
    ), url('../images/image_1.jpg') no-repeat 50% 50% fixed;
  background-size: cover;
  
}

.navbar {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-size: 1.2em !important;
}

.navbar-brand {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-size: 1.6em !important;
    font-weight: bold;
}

.navbar-light .navbar-brand, .navbar-light .navbar-nav .active>.nav-link {
    color: darkgreen;
}

.footer {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 0.8em !important;
}

#footer-text {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

#navbarDropdown, #navLink {
    padding-right: 15px;
}

table.table-bordered > thead > tr > th, table.table-bordered > tbody > tr > th, table.table-bordered > tbody > tr > td{
  border:2px solid black;
}

.header {
    color: black;
    font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 24px;
    padding-bottom: 10px;
}

.menu_table {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
    padding-bottom: 10px;
}

.document_text {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: black
}

.code_text {
	font-family: "Courier New", Courier, mono;
	font-size: 12px;
	color: #000000;
	background-color: #FFFFFF;
}

.btn-success {
    background-color: darkgreen;
    border-color: darkgreen;
}