#c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* push it behind everything */
}

.content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    text-align: center;
}

.main-container {
    margin: 20px auto;
    max-width: 700px;
    margin-bottom: -20px;
}

.profile-image {
    border-radius: 50%;
    max-width: 30%;
    margin-bottom: 1.2rem;
}

.main-article {
    padding: 3rem;
    padding-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.social-icons a {
    color: #000;
    /* Black color */
    font-size: 30px;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-icons a:hover {
    transform: scale(1.1);
    color: #333;
    /* Slightly lighter on hover */
}

.container-footer {
    text-align: center;
    color: white;
}

.container-footer a {
    color: white;
    text-decoration: none;
}

.rg-project {
  position: relative;
  text-align: center;
}

/* Icon fixed to the right side */
.rg-project .rg-icon {
  position: absolute;
  right: 1rem;               /* adjust distance from the edge */
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
}

/* Your tooltip underline fix */
[data-tooltip] {
  border-bottom: none !important;
  text-decoration: none !important;
}

/* Hide default Pico tooltip */
[data-tooltip]:not(.tooltip-visible)::after {
  display: none !important;
}

@media (max-width: 600px) {
  [data-tooltip][data-placement="top"]::before {
    transform: translate(calc(-50% - 40px), -0.5rem) !important; /* more left and up on mobile */
  }

  [data-tooltip][data-placement="top"]::after {
    transform: translate(calc(-50% - 40px), -0.5rem) !important;
  }
}
