canvas {
  display: block;
  vertical-align: bottom;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: #000000; /* Fallback color */
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
}

.image {
  border-radius: 50%;
  width: 170px;
  height: 170px;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.header1 {
  font-family: 'Righteous', cursive;
  font-size: 6vw;
  color: #fff;
  margin-bottom: 10px;
}

.header2 {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 1.4vw;
  color: #ccc;
}

.header3 {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 2.2vw;
  color: #fff;
  margin-bottom: 5px;
}

/* Social links container */
.social-links {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

/* Style both link classes consistently */
.link1, .link2 {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 2.8vw;
  color: #fff;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

/* Make icons perfectly aligned */
.link1 i, .link2 i {
  font-size: inherit;
  display: inline-block;
}

.link1:hover, .link2:hover {
  color: #fc7a00;
  transform: translateY(-3px);
  background: rgba(252, 122, 0, 0.15);
}

/* Responsive breakpoints */
@media screen and (max-width: 785px) {
  .header1 {
    font-size: 8vw;
  }
  .link1, .link2 {
    font-size: 4vw;
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 765px) {
  body {
    text-align: center;
  }
  .header1 {
    font-size: 9vw;
  }
  .header2 {
    font-size: 2.5vw;
  }
  .header3 {
    font-size: 3.5vw;
  }
  .link1, .link2 {
    font-size: 5vw;
    width: 45px;
    height: 45px;
  }
  .social-links {
    justify-content: center;
  }
}

@media screen and (min-width: 1390px) {
  .header2 {
    font-size: 1.1vw;
  }
  .link1, .link2 {
    font-size: 1.8vw;
    width: 70px;
    height: 70px;
  }
}