body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #000000; /* Dark Green */
  color: #000000; /* White */
  position: relative;
  width: 100vw;
  display: flex;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-size: cover;
}

.wrapper {
  position: relative;
  min-height: 100vh; /* Set a minimum height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  background-color: #000000;
}

canvas {
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 5px;
  pointer-events: none;
  z-index: -1;
}

.container {
  text-align: center;
  padding: 20px;
}
mark {
  background-color: #d0ff00; /* Yellow */
  color: #000000; /* Black */
}
h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.name{
  color: #00ff00;
}
.p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.links {
  margin-top: 20px;
  position: relative; /* Add this line to position the links relative to the container */
  z-index: 1;
}

.green-text {
  color: #f7f7f7; /* Green */
}


.links-box-word {
  color: white;
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  text-decoration: none;
  border: 2px solid;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.links-box-word:hover{
  color: #000000;
  background-color: #00ff00;
}

.footer {
  margin-top: 50px;
}

.social-links a {
  text-decoration: none;
  color: #00ff00;
  font-size: 0.9em;
  margin: 10px;
  padding: 10px 45px;
  transition: all 0.4s ease;
}

.social-links a:hover {
  text-decoration: underline;
}

.hr-solid-content {
  color: #d0ff00;
  border: 0;
  font-size: 19px;
  padding: 1em 0;
  position: relative;
  font-family: Arial, sans-serif;
  font-weight: bold;

}
.hr-solid-content::before {
  content: attr(data-content);
  position: absolute;
  padding: 0 1ch;
  line-height: 1px;
  border: solid #d0ff00;
  border-width: 0 99vw;
  width: fit-content;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}


.tech-stack .icon img {
  width: 50px;
  height: 50px;
  filter: brightness(1) grayscale(100%) contrast(1.5);
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.tech-stack .icon img:hover {
  filter: brightness(1) grayscale(0) contrast(1);
  border: 2px ;
  transform: scale(1.3);
}


@media only screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 2em;
  }

  .links-box-word {
    padding: 8px 16px;
  }

  .icon img {
    width: 30px;
    height: 30px;
  }
}