body {
  background-color: #111;
  color: #eee;
  font-family: Inter, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  margin: 0;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Ensures it sits behind other elements */
  background-color: #111; /* Matches your body background color */
}

.header {
  background-color: #111;
  color: #9999FF;
  text-align: center;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -.05em;
  padding: 10px 0;
  min-height: 60px;
  max-height: 60px;
  overflow: hidden;
  position: fixed; /* Change the positioning to fixed */
  top: 0; /* Set the distance from the top to 0 */
  width: 100%; /* Set the width to 100% */
  z-index: 999; /* Set a high z-index to ensure it appears above other elements */
}

.footer {
  color: #9999FF;
  text-align: center;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -.03em;
  padding: 10px 0 50px;
}

.header a,
.footer a {
  color: inherit;
  text-decoration: none;
}

.header a:hover,
.footer a:hover {
  text-decoration: none;
}

.header a:visited,
.footer a:visited {
  color: inherit;
}

.title {
  font-weight: 200;
}

.title-bold {
  font-weight: 600;
}

.content {
  text-align: center;
  margin: auto;
  color: #eee;
  padding-top: 75px;
  padding-bottom: 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 150vw;
  position: relative;
  left: -25vw;
}

.content p {
  line-height: 1em;
  font-size: 7em;
  font-weight: 900;
  margin: 0;
  letter-spacing: -.05em;
  transition: color 4s;
}

.about {
  text-align: left;
  margin: auto;
  width: 60%;
  max-width: 800px;
  color: #eee;
  padding-bottom: 70px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about p {
  line-height: 1em;
  font-size: 4.5em;
  font-weight: 900;
  margin: 0;
  letter-spacing: -.04em;
  transition: color 4s;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about li {
  position: relative;
  color: #EEE;
  line-height: 1em;
  font-size: 4em;
  font-weight: 900;
  margin: 0;
  letter-spacing: -.04em;
  padding-left: 1em;
}

.about li:before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #9999FF;
}

.highlight {
  font-size: .7em;
  letter-spacing: -.02em;
  color: #9999FF;
}

#status {
  background-color: #333;
  border-radius: 5px;
  position: fixed;
  top: 20px;
  left: 20px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  font-size: .75em;
  letter-spacing: -.02em;
  z-index: 999;
}

#status span {
  margin-right: 10px;
  color: #eee;
}

#status-indicator {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: green;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.button {
  background-color: #333;
  border-radius: 10px;
  position: relative;
  display: inline-block;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  letter-spacing: -.02em;
  margin-top: 20px;
  padding: 10px 20px;
  width: 70px; /* adjust this value to your needs */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button a,
.button a:hover,
.button a:visited {
  text-decoration: none;
}

.button span {
  margin-right: 20px;
  color: #eee;
}



@media only screen and (max-width: 1258px) {


  .about {
    width: 100%;
    max-width: 600px;
    padding: 50px;
  }

  .content p {
    font-size: 3em;
    letter-spacing: -.05em;
  }

  .about p {
    font-size: 3em;
    letter-spacing: -.05em;
  }

  .content li {
    font-size: 3em;
    letter-spacing: -.05em;
  }

  .about li {
    font-size: 2em;
    letter-spacing: -.05em;
  }

  #status {
    top: auto;
    bottom: 20px;
    left: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .content {
    width: 180vw;
    position: relative;
    left: -40vw;
    padding-top: 75px;
    padding-bottom: 50px;
  }

  .about {
    width: 100%;
    padding-top: 100px;
    max-width: 500px;
    padding: 20px;
  }

  .content p {
    font-size: 3em;
    letter-spacing: -.05em;
  }

  .about p {
    font-size: 2.5em;
    letter-spacing: -.05em;
  }

  .content li {
    font-size: 3em;
    letter-spacing: -.05em;
  }

  .about li {
    font-size: 2em;
    letter-spacing: -.05em;
  }

  #status {
    top: auto;
    bottom: 20px;
    left: 20px;
  }
}

