/*Main Theme*/

/*Local Fonts*/
@font-face {
    font-family: 'LocalAudiowide';
    src: url('fonts/Audiowide-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'LocalIceland';
    src: url('fonts/Iceland-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'LocalNovaSquare';
    src: url('fonts/NovaSquare-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'LocalGenos';
    src: url('fonts/Genos-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'LocalGenos';
    src: url('fonts/Genos-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}



/*Headings*/

h1 {
  margin: 0;

  color: #d5ffe1;
  font-size: clamp(2rem, 6vw, 5rem);
  letter-spacing: 0.2em;

  text-shadow:
    0 0 5px #00ff66,
    0 0 15px #00ff66,
    0 0 35px rgba(0, 255, 100, 0.6);
}

h2 {
    font-family: 'LocalNovaSquare';
    color: #ff0090;
    text-align: center;
    text-shadow: 0 0 8px #00eaff;
    border-bottom: 1px solid #00eaff33;
    padding-bottom: 4px;
} 

h3 {
    color: #00ff66;
    text-shadow: 0 0 8px #00eaff;
    border-bottom: 1px solid #00eaff33;
    padding-bottom: 4px;
}

h4 {
    color: #00eaff;
    text-shadow: 0 0 8px #00eaff;
    border-bottom: 1px solid #00eaff33;
    padding-bottom: 4px;
}

h5 {
    color: #00FFC4;
    text-shadow: 0 0 8px #00eaff;
    border-bottom: 1px solid #00eaff33;
    padding-bottom: 4px;
}

/*Body*/
body {
    background-color: #000000;
    color: #00eaff; /* neon blue */
    font-family: "LocalGenos", monospace;
    line-height: 1.6;
}

a {
    color: #00eaff;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 6px #00eaff;
}

br {
    line-height: 2;
}

/*Table*/
table {
    border-collapse: collapse;
    width: 80%;
    margin: 20px 0;
}

.table-centered-class {
    font-family: 'LocalIceland';
    display: flex;
    justify-content: center;
}

td, th {
    border: 1px solid #00eaff55;
    padding: 10px;
}

tr:hover {
    background-color: #001a22;
}

/*For Matrix Effect*/
#matrix {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.8;
}

.content {
  position: relative;
  z-index: 1;

  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  background:
    radial-gradient(
      circle at center,
      rgba(0, 30, 12, 0.15),
      rgba(0, 0, 0, 0.55)
    );
}