{
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
    }

    html,
    body {
        margin: 0;
        padding: 0;
        font: 14px/1.5 'Lato', sans-serif;
        color: #fefeff;
        -webkit-font-smoothing: antialiased;
        font-weight: normal;
    }

    body {
        background: #000;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    h1 {
        font: 2.1em 'Cinzel', serif;
        font-weight: 180;
        letter-spacing: 0.1em;
        text-shadow: 0 0 25px rgba(254, 254, 255, 0.85);
		margin-bottom: 1em
    }

    h2 {
        font: 1.5em 'Cinzel', serif;
        font-weight: 130;
        letter-spacing: 0.2em;
        text-shadow: 0 0 20px rgba(254, 254, 255, 0.65);
        text-transform: uppercase;
		margin-bottom: 4em
    }

    [class^="letter"] {
        -webkit-transition: opacity 3s ease;
        -moz-transition: opacity 3s ease;
        -transition: opacity 3s ease;
    }

    .letter-0 {
        transition-delay: 0.2s;
    }

    .letter-1 {
        transition-delay: 0.4s;
    }

    .letter-2 {
        transition-delay: 0.6s;
    }

    .letter-3 {
        transition-delay: 0.8s;
    }

    .letter-4 {
        transition-delay: 1.0s;
    }

    .letter-5 {
        transition-delay: 1.2s;
    }

    .letter-6 {
        transition-delay: 1.4s;
    }

    .letter-7 {
        transition-delay: 1.6s;
    }

    .letter-8 {
        transition-delay: 1.8s;
    }

    .letter-9 {
        transition-delay: 2.0s;
    }

    .letter-10 {
        transition-delay: 2.2s;
    }

    .letter-11 {
        transition-delay: 2.4s;
    }

    .letter-12 {
        transition-delay: 2.6s;
    }

    .letter-13 {
        transition-delay: 2.8s;
    }

    .letter-14 {
        transition-delay: 3.0s;
    }

    h1,
    h2 {
        visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    h1.transition-in,
    h2.transition-in {
        visibility: visible;
    }

    h1 [class^="letter"],
    h2 [class^="letter"] {
        opacity: 0;
    }

    h1.transition-in [class^="letter"],
    h2.transition-in [class^="letter"] {
        opacity: 1;
    }

    #container {
        display: table;
        position: absolute;
        z-index: 20;
        width: 100%;
        height: 100%;
        text-align: center;
        cursor: default;
		top: -10%;
    }

    #container > div {
        display: table-cell;
        vertical-align: middle;
    }
	
	

 footer {
  padding: 20px;
  text-align: center;
  position: fixed;
  width: 100%;
  bottom: 30px;
}

/* Existing paragraph tag styles */
footer p {
  color: rgba(255, 255, 255, 0.8); /* White color with 80% opacity */
  margin: 8px 0;
  font-size: 14px;
}

#recordInfo {
     color: rgba(255, 255, 255, 0.8);
}

footer a:hover {

  text-decoration: underline; /* Add underline on hover */
}
	
	



    #canvas {
        position: absolute;
        z-index: 10;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        cursor: default;
    }

    #stats {
        position: absolute;
        z-index: 10;
        left: 10px;
        top: 10px;
    }

    .dg.ac {
        z-index: 100 !important;
    }

    a:hover {
        color: #CCCCCC;
        text-decoration: underline;
    }

    a,
    a:link {
        color: #fff;
        text-decoration: none;
    }

    .STYLE1 {
        font-family: Arual;
        font-weight: bold;
    }

    .STYLE2 {
        color: #FF0000
    }
/* Reset default list styles */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Style the list items */
nav ul li {
  display: inline-block;
  margin-right: 10px; /* Adjust spacing between items */
  border: 2px solid rgba(52, 152, 219, 0.7); /* Add border with a slightly transparent blue color */
  border-radius: 20px; /* Rounded corners */
  padding: 8px 16px; /* Add padding */
  transition: transform 0.3s, box-shadow 0.3s, color 0.3s, border-color 0.3s, background-color 0.3s; /* Add transition for hover effect */
  background-color: transparent; /* Set transparent background color */
}

/* Remove underline from links */
nav ul li a {
  text-decoration: none;
  color: #3498db;
  transition: color 0.3s; /* Add transition for link color change */
}

/* Hover effect */
nav ul li:hover {
  transform: translateY(-5px); /* Move the element up on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  border-color: #2980b9; /* Change border color on hover */
  background-color: rgba(41, 128, 185, 0.7); /* Change slightly transparent background color on hover */
}

/* Change text color based on border color on hover */
nav ul li:hover a {
  color: #ffffff; /* Change text color on hover */
}

/* Optional: Add animation on hover */
nav ul li:hover a {
  animation: pulse 0.6s ease infinite;
}

/* Keyframes for the optional animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
