.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

body, html {
  background-color: rgb(77, 38, 156) !important;
  font-family: Helvetica;
}

body {
  background-color: rgb(77, 38, 156) !important;
  font-family: Helvetica;
}

nav a {
  margin: 0 50px;
}

.navbar-custom {
  background-color: white;
  backdrop-filter: blur(6px);
  border-bottom: 5px solid rgba(148, 0, 255, 0.9);
  box-shadow:
    0 0 10px rgba(148, 0, 255, 0.5),
    0 0 20px rgba(88, 0, 250, 0.4),
    0 0 30px rgba(86, 3, 240, 0.3),
    0 0 40px white;
  padding: 10px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav-links li a {
  font-family: Helvetica;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  color: rgb(148, 0, 255);
  position: relative;
  padding: 10px 50px;
  transition: all 0.3s ease;
  overflow: hidden;
  display: inline-block;
  border-radius: 20px;
}

.nav-links li a::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(120deg, rgb(148, 0, 255), rgba(149, 0, 255, 0.419));
  transition: left 0.4s ease;
  z-index: -1;
}

.nav-links li a:hover::before {
  left: 0;
}

.nav-links li a:hover {
  color: white;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 100px;
  text-align: center;
  font-weight: bold;
  background-color: rgb(77, 38, 156);
  color: white;
  font-family: Helvetica;
  padding: 10px;
  margin-bottom: 200px;
  text-shadow:
    0 0 3px rgb(148, 0, 255),
    0 0 5px rgb(148, 0, 255),
    0 0 7px rgb(148, 0, 255),
    0 0 9px rgb(88, 0, 250),
    0 0 12px rgb(85, 1, 241),
    0 0 15px rgb(86, 3, 240);
}

.h1-header {
  color: white;
  text-align: center;
  font-size: 60px;
  -webkit-text-stroke: 1px white;
  margin-top: 50px;
  margin-bottom: 20px;
  text-shadow:
    0 0 3px rgb(148, 0, 255),
    0 0 5px rgb(148, 0, 255),
    0 0 7px rgb(148, 0, 255),
    0 0 9px rgb(88, 0, 250),
    0 0 12px rgb(85, 1, 241),
    0 0 15px rgb(86, 3, 240);
}

.h1-header span {
  display: inline-block;
  font-size: 4rem;
  animation: wave 2s ease-in-out infinite;
}

.h1-header span:nth-child(1) {
  animation-delay: 0s;
}

.h1-header span:nth-child(2) {
  animation-delay: 0.2s
}

.h1-header span:nth-child(3) {
  animation-delay: 0.3s;
}

.h1-header span:nth-child(4) {
  animation-delay: 0.4s;
}

.h1-header span:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes wave {
  0%, 100% {
    transform:
translateY(0);
  }
  50% {
    transform:
translateY(-20px);
  }
}

.h2-header {
  color: white;
  -webkit-text-stroke: 1px white;
  font-size: 40px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  text-shadow:
    0 0 3px rgb(148, 0, 255),
    0 0 5px rgb(148, 0, 255),
    0 0 7px rgb(148, 0, 255),
    0 0 9px rgb(88, 0, 250),
    0 0 12px rgb(85, 1, 241),
    0 0 15px rgb(86, 3, 240);
}

.h3-header {
  color: white;
  -webkit-text-stroke: 1px white;
  font-size: 35px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
    text-shadow:
    0 0 3px rgb(148, 0, 255),
    0 0 5px rgb(148, 0, 255),
    0 0 7px rgb(148, 0, 255),
    0 0 9px rgb(88, 0, 250),
    0 0 12px rgb(85, 1, 241),
    0 0 15px rgb(86, 3, 240);
}

.profile-pic {
  display: block;
  margin: auto;
  width: 300px;
  height: auto;
  border-radius: 50%;
}

.profile-pic:hover {
  animation: tilt-shaking 0.4s infinite;
}

@keyframes tilt-shaking {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

.linkedin-button {
  color: rgb(123, 160, 247);
  padding: 20px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-decoration: none;
}

.email-button {
  color: rgb(123, 160, 247);
  padding: 20px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-decoration: none;
}

.linkedin-button, .email-button {
  font-size: clamp(20px, 5vw, 40px);
}