body {
background: linear-gradient(0deg, #210042 0%, #000000 100%);
background-attachment: fixed; /* fixed of scroll */

font-family: Consolas, 'Courier New', Helvetica;
color: #ADFF2F;
}

a {
color: #00FF00;
}

a:hover {
color: #822EFF;
font-weight: bold;
}

/*a {
/*color: #822EFF;
/*decoration: none;
/*font-weight: bold;
/*filter: drop-shadow(5px 5px 10px #FFFFFF);
/*filter: blur(3px);
/*}

/* hover MUST come after :link and :visited (if they are present) in the CSS definition, in order to be effective! */
/*a:hover { 
/*filter: blur(0px);
/*}


/* hover MUST come after :link and :visited (if they are present) in the CSS definition, in order to be effective! */
/*a:active { 
/*color: green;
/*}

li {
padding-left: 4px;
}

/* Targets links within odd-numbered list items for styling */
ul li:nth-child(odd) { 
color: #822EFF;
background-color: #ADFF2F;
}

/* Targets links within odd-numbered list items for styling */
ul li:nth-child(even) { 
color: #ADFF2F;
background-color: #822EFF;
}

ul li:nth-child(odd):hover { 
color: #000000;
background-color: #FFFFFF;
}

ul li:nth-child(even):hover { 
color: #000000;
background-color: #FFFFFF;
}






table {
border-collapse: collapse;
margin-left: auto;
margin-right: auto;
width: 70%;
}

tr:nth-child(odd) {
background-color: #364040;
}

tr:nth-child(odd):hover {
background-color: #1D3620;
}

tr:nth-child(even) {
background-color: #36454F;
}

tr:nth-child(even):hover {
background-color: #1D3620;
}

th {
color: #000000;
background-color: #00FF00;
}

th, td {
text-align: left;
padding: 8px;
border-right: 1px solid #00FF00;
}

th, td:last-child {
border-right: none;
}







.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted #000000;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #FFFFFF;
  color: #000000;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}