* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Iosevka";
  src: url("./assets/Iosevka.woff2") format("woff2");
  font-display: swap;
}

body {
  background-color: #080808;
  color: #fff;
  font-family: "Iosevka", monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Star Background */
#stars,
#stars2,
#stars3 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}

#stars {
  width: 1px;
  height: 1px;
  background: transparent;
  box-shadow: 1744px 179px #FFF, 540px 1860px #FFF, 1500px 480px #FFF, 1200px 900px #FFF, 300px 100px #FFF, 800px 1400px #FFF, 1900px 200px #FFF, 100px 1800px #FFF, 600px 500px #FFF, 1300px 1200px #FFF, 1744px 2179px #FFF, 540px 3860px #FFF, 1500px 2480px #FFF, 1200px 2900px #FFF, 300px 2100px #FFF, 800px 3400px #FFF, 1900px 2200px #FFF, 100px 3800px #FFF, 600px 2500px #FFF, 1300px 3200px #FFF;
  animation: animStar 50s linear infinite;
}

#stars2 {
  width: 2px;
  height: 2px;
  background: transparent;
  box-shadow: 1000px 100px #FFF, 200px 800px #FFF, 1500px 500px #FFF, 500px 1500px #FFF, 1800px 1200px #FFF, 1000px 2100px #FFF, 200px 2800px #FFF, 1500px 2500px #FFF, 500px 3500px #FFF, 1800px 3200px #FFF;
  animation: animStar 100s linear infinite;
}

#stars3 {
  width: 3px;
  height: 3px;
  background: transparent;
  box-shadow: 400px 400px #FFF, 1400px 1400px #FFF, 100px 1700px #FFF, 1800px 200px #FFF, 400px 2400px #FFF, 1400px 3400px #FFF, 100px 3700px #FFF, 1800px 2200px #FFF;
  animation: animStar 150s linear infinite;
}

@keyframes animStar {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-2000px);
  }
}

.container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 2rem;
  text-shadow: 0px 0px 8px black;
}

.profile-pic {
  margin-bottom: 2.5rem;
}

.profile-pic img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: grayscale(20%);
  border: 1px solid #333;
  padding: 5px;
  box-shadow: 0px 0px 8px black;
}

#about {
  margin-bottom: 2.5rem;
  color: #a0a0a0;
  text-shadow: 0px 0px 8px black;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #a0a0a0;
  text-shadow: 0px 0px 8px black;
}

.links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #333;
  transition: all 0.2s ease;
}

.links a:hover {
  border-bottom-color: #fff;
  color: #fff;
}

@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }
}
