.organization {
  font-size: 0.85em;
  background-color: #9e9e9e;
  color: #fff;
  padding: 2px 8px;
  margin: 0 100px;
  border-radius: 2em;
  text-align: center;
}

.avatar {
  display: inline;
}

.skills {
  padding-left: 30px;
}

h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
  color: #00cfcf;
  letter-spacing: 2px;
}

h2:before {
  content: attr(data-text);
  position: absolute;
  background: linear-gradient(90deg, #00ffff, #ff00ff, #ffcc00, #00ff00);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: swing 3s infinite alternate;
  font-weight: 700;
  letter-spacing: 2px;
  clip-path: ellipse(120px 120px at 50% 50%);
}

@keyframes swing{
  0%{
     -webkit-clip-path: ellipse(120px 120px at -2.54% -9.25%)
    clip-path: ellipse(120px 120px at -2.54% -9.25%)
  }
  50%{
    -webkit-clip-path: ellipse(120px 120px at 49.66% 64.36%);
    clip-path: ellipse(120px 120px at 49.66% 64.36%);

  }
  100%{
     -webkit-clip-path: ellipse(120px 120px at 102.62% -1.61%;);
    clip-path: ellipse(120px 120px at 102.62% -1.61%);
  }
} 

.about-me p {
  font-size: 1.5em;
  color: #00cfcf;
  font-family: 'Orbitron', sans-serif;
}

.wave {
  animation: wave-animation 2s infinite;
  display: inline-block;
}

@keyframes wave-animation {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(14deg); }
  30% { transform: rotate(-8deg); }
  40% { transform: rotate(14deg); }
  50% { transform: rotate(-4deg); }
  60% { transform: rotate(10deg); }
  70% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}


@media (max-width: 767px) {
  h2 {
    font-size: 1.5em;
  }
  .about-me p {
    font-size: 1.2em;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 1.2em;
  }

  .about-me p {
    font-size: 1.1em;
  }

  .wave {
    font-size: 1.1em;
  }
}