html, body{
	margin: 0;
	padding: 0;
	height: 100%;
	overflow: hidden;
	font-family: 'Segoe UI', sans-serif;
}

#vanta-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
}

.hero {
      position: relative;
      z-index: 1;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #ffffff;
      padding: 2rem;
    }

    .hero #pp {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      border: 3px solid #00ffcc;
      margin-bottom: 1rem;
      box-shadow: 0 0 20px #00ffcc;
      object-fit: cover;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin: 0.5rem 0;
      text-shadow: 0 0 10px #00ffcc;
    }

    .hero p {
      font-size: 1.1rem;
      color: #c9d1d9;
      margin-bottom: 2rem;
    }

    .links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }

    .links a {
        display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.2s;
    }

    .links a:hover {
      opacity: 0.8;
    }

    .icons{
    	vertical-align: middle;
  	border-radius: 50%;
	width: 48px;
	height: 48px;
    }

    @media (max-width: 600px) {
      .hero h1 {
        font-size: 1.8rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }
