:root {

    --cassiopeia-color-primary: #0E69A8;
  	--cassiopeia-color-secondary: #B4CACA;
    --cassiopeia-color-link: #0000ff;
    --cassiopeia-color-hover: #ff0000;

    --cassiopeia-font-family-body: "Delius", "Ginger_Rooted", Arial, "Roboto", sans-serif;
    --cassiopeia-font-family-headings: "Delius", "Ginger_Rooted", Arial, "Roboto", sans-serif;
    --cassiopeia-font-weight-headings: 700;
    --cassiopeia-font-weight-normal: 400;
    
    --blue: #0d6efd;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #d63384;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #198754;
    --teal: #20c997;
    --cyan: #0dcaf0;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --primary: #B8DADB;
    --secondary: #B4CBCB;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
    --primary-rgb: 183, 218, 218;
    --secondary-rgb: 180, 202, 202;
    --success-rgb: 25, 135, 84;
    --info-rgb: 13, 202, 240;
    --warning-rgb: 255, 193, 7;
    --danger-rgb: 220, 53, 69;
    --light-rgb: 248, 249, 250;
    --dark-rgb: 33, 37, 41;
    --white-rgb: 255, 255, 255;
    --black-rgb: 0, 0, 0;
    --body-color-rgb: 33, 37, 41;
    --body-bg-rgb: 255, 255, 255;
    --font-sans-serif: system-ui, -apple-system, Arial, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --body-font-family: var(--cassiopeia-font-family-body);
    --body-font-size: 1.8rem;
    --body-font-weight: 500;
    --body-line-height: 1.5;
    --body-color: #383838;
    --body-bg: white;
}

@font-face {
    font-family: "Ginger_Rooted";
    src: url("../fonts/Ginger Rooted.ttf");  
	font-family: "Delius";
	src: url("../fonts/Delius.ttf");
}

body p {
  padding-left: 5px;
}

.container-header {
    background-color: #fff;
    background-image: none;
    border-top: 25px solid #59FF00;
}

.container-header .navbar-brand a {
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container-header .navbar-brand img {
  height: auto;
  max-width: 100%;
}

.card-body {
  flex: 1 1 auto;
  padding: 0 1rem;
}

.card {
    word-wrap: break-word;
    background-clip: border-box;
    background-color: #fff;
    border: none;
    border-radius: .25rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
}

.page-header {
    color: #fff;
}

.container-header .grid-child {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
}

.container-header .mod-menu {
    color: #000;
    flex: 1 0 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    border-bottom: solid #59FF00 2px;
}

@media (min-width: 992px)
.container-header .metismenu>li>a:after, .container-header .metismenu>li>button:before {
    background: transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    margin: auto;
    opacity: .4;
    position: absolute;
    right: 50%;
    transition: all .2s ease,background-color .2s ease;
}
*, :after, :before {
    box-sizing: border-box;
}
.btn-primary {
    background-color: var(--cassiopeia-color-primary);
    border-color: #fff;
}
.btn-primary:focus, .btn-primary:hover {
    background-color: #fff;
    border-color: var(--cassiopeia-color-primary);
    color: #000;
}

.row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.col-lg-12 {
  width: 100%;
}

.col-lg-7 {
  width: 70%;
}

.col-lg-6 {
  width: 60%;
}

.col-lg-4 {
  width: 40%;
}
.col-lg-3 {
  width: 30%;
}

.footer {
    color: #000;
    background: #59FF00;
    background: linear-gradient(180deg,rgba(89, 255, 0, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    margin-top: 1em;
    border-top: solid #59FF00 10px;
}

.metismenu.mod-menu .metismenu-item {
    font-size: 1.5rem;
    line-height: 1.5;
}

.footer .mod-menu {
    position: relative;
    justify-content: center;
}

.metismenu.mod-menu .metismenu-item.active>a, .metismenu.mod-menu .metismenu-item.active>button, .metismenu.mod-menu .metismenu-item>a:hover, .metismenu.mod-menu .metismenu-item>button:hover {
    text-decoration: none;
    color: black;
}

dl {
  overflow: hidden;
  font-weight:normal;
  margin: 12px;
}
dt {
  float: left;
  font-weight:400;
  padding: 0 .4em 0 0;
  margin: 0;
}
dd {
  float: right;
  padding: 0 0 0 .4em;
  margin: 0;
}
/* That's the leader! */
dl:after {
  content: "";
  display: block;
  overflow: hidden;
  height: 1em;
  border-bottom: 1px dotted;
}

body p {
    padding-left: 5px;
    text-align: center;
}