/* General Reset & Body */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: #ffffff;
  background-image: url("./pngs/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Centered Card (Glass Effect) */
main {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  max-width: 400px;
  margin: 60px auto;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Profile Image */
#pfp-pic img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  border: 4px solid #fff;
}

/* Name & Bio */
#about-me h1 {
  margin: 15px 0 5px;
  font-size: 26px;
  font-weight: 600;
}

#about-me p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 25px;
}

/* Links Section */
#links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Link Styling */
#links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  background: rgba(25, 0, 94, 0.8);
  padding: 12px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Link Hover */
#links a:hover {
  background: #ffffff;
  color: #19005e;
  transform: scale(1.05);
}

/* Icon Styling */
#links svg {
  width: 20px;
  height: 20px;
  fill: currentColor; /* uses link color */
}
