  * {
  box-sizing: border-box;
}

html { height: 100vh; background: #000; display: flex; }
body { width: 100%; margin: 0; font-family: overlock; place-items: center; background-color: transparent;}

body.iframe {
    background-color: none transparent !important; /* or background-color: transparent !important; */
    height: 100%;
    opacity: 1;
}

.gradient-box {
  width: 90%;
  height: 90%;
  margin: 1.5vh auto;
  padding: 15px;
  overflow-y: hidden;  
  border: 3px groove rgba(24,78,52,.7);
  border-radius: 15px;  
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,.6) 90%, rgba(0,0,0,.5) 95%, rgba(0,0,0,0) 100%);
  background-repeat: no-repeat;  
  background-color: transparent;
}

.container {
  width: 95%;
  height: 90%;
  margin: 0 auto;
  background-color: transparent;
  overflow: auto;
}

.container li {
  font-family: overlock;
  font-size: 1rem;
  color: seashell;
  margin-left: auto;
  margin-right: auto;
}

.container li a {
  color: darkseagreen;  
  font-size: large;
  font-weight: 600;
}

.container::-webkit-scrollbar {
  width: 12px;
}

.container::-webkit-scrollbar-track {
  background-color: #001a00;
}

.container::-webkit-scrollbar-thumb {
  background-color: #001a00;
  border-radius: 20px;
  border: 3px solid darkgreen;
}

.wrapper {
  width: 90%;
  height: 100%;
  margin: 0 auto;  
  background-color: transparent;
  overflow-y: auto;
}

.wrapper li {
  font-family: overlock;
  font-size: 1em;
  color: seashell;
  margin-left: auto;
  margin-right: auto;
}

.wrapper::-webkit-scrollbar {
  width: 12px;
}

.wrapper::-webkit-scrollbar-track {
  background-color: #001a00;
}

.wrapper::-webkit-scrollbar-thumb {
  background-color: #001a00;
  border-radius: 20px;
  border: 3px solid darkgreen;
}

.box {
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: transparent;
  overflow: auto;
}

.box::-webkit-scrollbar {
  width: 12px;
}

.box::-webkit-scrollbar-track {
  background-color: #001a00;
}

.box::-webkit-scrollbar-thumb {
  background-color: #001a00;
  border-radius: 20px;
  border: 3px solid darkgreen;
}
/* Text in transparent box */

div.transbox {
  height: 100%;
  background-color: rgba(0,0,0,0.05) !important;
  z-index: 1000;
}

/* end transparent box */

iframe {
  position: static;
  display: block;
  margin: 0 auto;
  width: 90%;
  height: 100%;
  opacity: .75;
  border: hidden;
  border-radius: 20px;
}

iframe::-webkit-scrollbar {
  width: 12px;
}

iframe::-webkit-scrollbar-track {
  background: #001a00;
}

iframe::-webkit-scrollbar-thumb {
  background-color: #001a00;
  border-radius: 20px;
  border: 3px solid darkgreen;
}

.header {
  width: 85%;
  margin: 5vh auto;  
  align-items: center;
  place-items: center;
  border-width: 80%;
  border-top: solid 4px;
  border-bottom: solid 4px;  
  border-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgb(0,100,0,.8) 40%, rgb(175,207,175,.8) 50%, rgba(0,100,0,.8) 60%, rgb(0,0,0,0) 100%) 1;    
}

/* navigation */
.navbar {
  position: sticky;
  height: auto;
  width: 100%;
  font-family: overlock;
  margin: 0 auto; 
  text-align: center;
}

.navbar ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: center;
}

.navbar li {
  padding: 10px;
}

.line1 {
  height: 1px;
  border-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgb(0,100,0,.8) 40%, rgb(175,207,175,.8) 50%, rgba(0,100,0,.8) 60%, rgb(0,0,0,0) 100%) 1;   
  margin: 25px auto;
}

hr.embossed-line {
  border-top: 1px groove darkseagreen;
  border-bottom: 1px solid seagreen;
  width: 70%;
  height: 0;
  margin: 0 auto; 
}

ul {
  list-style-type: none;
  color: #39ac6b;
  font-size: 1em;
  font-family: overlock;   
  margin: 0;
  padding: 0;
}

ul li {
  color: #39ac6b;
  font-size: 1em;
  font-family: overlock; 
}

ol {
  font-family: overlock;
  font-size: 1rem;
  width: 60%;
  margin: 20px auto;
}

li bold {
  color: darkseagreen;
  font-size: 1em;
  font-family: overlock;  
}

li bold2 {
  color: seagreen;
  font-size: 1em;
  font-family: overlock;
  font-weight: 600;
}

.col-container {
  display: table; /* Make the container element behave like a table */
  width: 70%;
  margin: 0 auto;
}

.col {
  display: table-cell; /* Make elements inside the container behave like table cells */
  width: 50%;
  align-content: center;
}

.col3-container {
  display: table; /* Make the container element behave like a table */
  width: 100%;
  column-count: 3;
  column-gap: 20px;
  column-rule: 1px hidden;
}

.col3 {
  display: table-cell; /* Make elements inside the container behave like table cells */
  width: 33%;
  vertical-align: top;
  height: auto;  
}

.col3 img {
  display: table-cell;  
  border-radius: 15px;
  border: double darkgreen;
  width: 100%;
}

.colspan2 {
  display: table-cell;  
  column-span: 2;
  text-align: left;
}

.colspan3 {
  display: table-cell;  
  column-span: 3;
  text-align: left;
}

.row {
  display: table-row;    
  width: 100%;
  height: auto;
  vertical-align: top;
}

.box {
  background-color: rgba(0,0,0,.5);
  border: 1px solid darkgreen;
  border-radius: 1em;  
  width: 90%;
  margin: 0 auto;
  padding: 2rem;
}

table {
  line-height: 1.5rem;
  width: 98%;
  height: auto;
  margin: 0;
  padding: 0;  
  background-color: rgba(0,0,0,.5);
  border-collapse: collapse;  
  border-radius: 15px;
  table-layout: fixed;  
}

table caption {
  margin: .5em 0 .75em;
  font-size: 1.5em;
  font-weight: 600;
  background-color: #001a00;  
  border-radius: 15px;  
  border: 1px solid darkgreen;  
}

table th {
  display: inline-block;  
  width: 25%;
  height: 100%;
  padding: .625em;
  font-size: .85em;
  letter-spacing: .1em;  
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;  
  color: darkseagreen;  
  background-color: darkgreen;
  vertical-align: middle;
  border-radius: 15px;
}

.head {
  display: inline-block;  
  width: 100%;
  height: 100%;
  padding: .625em;
  font-size: 1.1rem;
  letter-spacing: .1em;  
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;  
  color: darkseagreen;  
  background-color: #001a00;
  vertical-align: middle;
  border-radius: 15px;
}

table tr {
  display: block;
  width: 100%;
  border-radius: 15px;    
  border-top: 2px solid darkgreen;
  margin-bottom: .625em;
}

td a {
  font-family: overlock;
  font-size: 1rem;
  font-weight: 400;
}

table td {
  display: inline-block;
  width: 25%;
  padding: .625em;
  font-family: overlock;  
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;  
  color: darkseagreen;
  vertical-align: text-top;  
}

.td {
  display: inline-block;
  width: 65%;
  padding: .625em;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: overlock;
  text-align: left;
  color: darkseagreen;
  vertical-align: text-top;  
}

button {
  font-family: overlock;
  position: relative;
  font-size: .9em;
  color: seagreen;
  background: linear-gradient(to bottom, rgb(175,207,175,.5) 0%, rgba(0,100,0,.6) 30%, rgb(0,0,0,.7) 100%);
  padding: 1rem 2rem;
  margin: 1rem auto;
  display: block;
  justify-content: center;
  align-items: center;
  border: 2px groove seagreen;
  border-radius: 15px;
  border-image-slice: 1;
  box-shadow:0 8px 16px 0 rgba(0,0,0,0.6)
}

a.button {
  font-family: overlock;
  position: relative;
  font-size: .9em;
  color: darkseagreen;
  background: linear-gradient(to bottom, rgb(175,207,175,.5) 0%, rgba(0,100,0,.6) 30%, rgb(0,0,0,.7) 100%);
  padding: 1rem 2rem;
  margin: 1rem auto;
  display: block;
  width: fit-content;
  align-items: center;  
  text-align: center;
  justify-content: center;
  border: 1.5px groove seagreen;
  border-radius: 15px;
  border-image-slice: 1;
  box-shadow:0 8px 16px 0 rgba(0,0,0,0.6)
}

a.button:visited {
  color: #008000;
  font-weight: 600;
  text-decoration: none;
}

a.button:active {
  top: 2px;
  left: 1px;
  box-shadow: 0 5px darkgreen;
  transform: translateY(4px);
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 30%;
}

.footer {
  position: fixed; /* Makes the footer fixed relative to the viewport */
  bottom: 0; /* Positions the footer at the bottom of the viewport */
  left: 0; /* Aligns the footer to the left edge */
  width: 100%; /* Makes the footer span the full width of the viewport */
  height: 8vh;
  text-align: center; /* Centers the text content within the footer */
  font-family: 'overlock'; 
  margin: 5px auto;
  line-height: 10px;
  background: radial-gradient(circle at center, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0) 90%);
  border-width: 70%;
  border-top: solid 4px;
  border-bottom: solid 4px;  
  border-image: linear-gradient(to right, rgba(0,0,0,0) 20%, rgb(0,100,0,.8) 40%, rgb(175,207,175,.8) 50%, rgba(0,100,0,.8) 60%, rgb(0,0,0,0) 80%) 1;    
  z-index: 1000; /* Ensures the footer stays on top of other content */
  overflow-y: auto;
}

.footer p {
  font-family: 'overlock';
  font-size: .9em;
  color: darkseagreen;
  font-weight: 600;
}

.footer a:link {
  font-family: 'overlock';   
  font-size: .9em;  
  color: #afcfaf;
}

.footer a:visited {
  font-family: 'overlock';   
  font-size: .9em;  
  color: #609f60;
}

.footer a:hover,
a:active {
  font-family: 'overlock';   
  font-size: .9em;  
  color: seashell;
  text-decoration: underline;  
}