:root {
  --gmail-svg: url(../images/gmail-dark.svg);
  --linkedin-svg: url(../images/linkedin-dark.svg);
  --twitter-svg: url(../images/twitterx-dark.svg);
}

a {
  text-decoration: none;
  color: #000;
}

.myName {
  font-weight: bold;
}

.myName:hover {
  padding-left: 30px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scaleX(1.5);
}

.list-styled:hover {
  transform: scaleX(1.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

header {
  padding: 20px 10px;
}

main {
  padding-top: 6rem;
}

.list-styled::marker {
  content: "";
}

.bg-white-gradient {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 73%,
    rgba(255, 255, 255, 0) 100%
  );
}

.time-pill {
  font-size: 12px;
  font-weight: bold;
  margin: 0;
  color: black;
  border-radius: 24px;
  padding: 2px 10px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
}

.experience-item {
  border: 1px solid #8e8e8e;
  border-radius: 10px;
  margin-bottom: 10px;
}

.email:before {
  background-image: var(--gmail-svg);
}

.linkedin:before {
  background-image: var(--linkedin-svg);
}

.twitter:before {
  background-image: var(--twitter-svg);
}

.phone-bell-icon {
  display: inline-block;
  transition: transform 0.1s ease;
}

.phone-bell-icon:hover {
  animation: shake 0.5s infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-10deg);
  }
  20%,
  40%,
  60%,
  80% {
    transform: rotate(10deg);
  }
}

footer li:before {
  content: "";
  display: inline-block;
  background-size: contain;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: 50%;
  transition: all;
  transition-duration: 1s;
}

@media (max-width: 569.98px) {
  .my-intro {
    padding: 0 12px 24px 12px;
  }
  .my-photo img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    object-position: 50% 25%;
  }
  .list-styled {
    font-size: 11px;
  }
}
