/* CSS Document */
body {
  margin: 0;
  overflow: hidden;
  background-color: #1E1E1E;
  background: url("/images/monochrome_noise.png");
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  scroll-behavior: smooth;
} 

h1, h2, h3, h4, h5, h6 {
  font-family: 'OCR A', monospace;
  text-align: center;
  color: #25FF25;
  text-shadow: 0 0 10px #10A010, 0 0 20px #10A010;
  animation: glow 2s infinite alternate;
}

p {
  font-family: Arial;
  color: white;
}  

a {
  text-decoration: none;
  text-shadow: 0px 0px 10px #10A010;
  color: #25FF25;
}

nav {
  margin: auto;
}

nav ul {
  padding: 25px;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

nav ul li, .caret {
  display: flex;
  padding: 0 10px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  font-family: 'OCR A', monospace;
  text-align: center;
  color: #25FF25;
  text-shadow: 0 0 10px #10A010, 0 0 20px #10A010;
  animation: glow 2s 0.5s infinite alternate;
}

nav ul li:hover, .active {
  background-color: #2525FF; /* Target color */
}

.caret {
  padding: 0;
}

.inactive {
  display: none;
}

#ProfileIcon {
  width: 200px;
  border-radius: 512px;
}

#container {
  text-align: center; /* Ensures child elements are aligned centrally */
}

#caret {
  display: flex;
  flex-direction: row;
}

#menu {
  border: solid 1px white;
  border-radius: 10px;
  margin-top: 48px;
}

#menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#menu ul li {
  margin: 5px 0;
}

#menu ul li a {
  text-decoration: none;
}

#menu ul li.active a {
  font-weight: bold;
}

/* Glow Animation */
@keyframes glow {
  from {
    text-shadow: 0 0 5px #10A010, 0 0 10px #10A010;
  }
  to {
    text-shadow: 0 0 20px #10A010, 0 0 30px #10A010;
  }
}