/* Define the background styling */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #151922;
  overflow: hidden; /* Ensure interests stay within the background */
  cursor: pointer; /* Change cursor to pointer when hovering over background */
}

/* Make interests visible by default */
.animated-interests {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.interest {
  position: absolute;
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}

.fade-in {
  opacity: 1;
}

.fade-out {
  opacity: 0;
}

/* Heading styling */
.heading-container {
  text-align: left; /* Align heading to the left */
  margin-top: 50px; /* Adjust margin as needed */
  position: relative; /* Ensure the heading is positioned relative to the background */
  z-index: 1; /* Ensure the heading is above the background */
}

.dynamic-heading {
  font-size: 48px; /* Increase font size */
  color: #fff; /* Set text color to white */
  position: relative;
}

.dynamic-heading .static-text {
  display: inline-block;
}

.dynamic-heading #changing-word {
  display: inline-block;
  margin-bottom: -5px; /* Adjust as needed */
  color: #22e9a8; /* Change color to highlight */
  transition: color 0.5s ease; /* Add transition effect */
}

.underline {
  width: auto;
  height: 4px;
  background-color: #22e9a8;
  display: inline-block;
}

.subheading {
  font-size: 24px; /* Increase font size */
  color: #fff; /* Set text color to white */
  margin-top: 20px; /* Adjust margin as needed */
  text-align: left; /* Left-align the subheading */
}

.logos {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.logos a {
  display: inline-block;
  margin-left: 10px;
}

.logos img {
  width: 50px;
  height: auto;
}
.logos a:hover {
  background-color: #1a9d86; /* Change background color on hover */
}
#network-lines {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0; /* Behind everything */
}

.interest {
  /* existing styles */
  font-family: monospace;
  font-size: 14px;
}
