@charset "UTF-8";

body {
  background-color:#000000;
  font-family:'Georgia',serif;
  color:#ff0033;
  font-size:20px;
}

#about-me {
  background-color:rgba(0,0,0,0.8);
  padding:40px;
  border-radius:20px;
  max-width:750px;
  margin:60px auto;
  text-align:center;
  box-shadow:0 0 30px #ff0033;
  border:2px solid #ff0033;
}

#about-me h1 {
  font-size:50px;
  color:#ff0033;
  text-shadow:0 0 10px #ff3366,0 0 20px #ff0033;
  animation:glow 2s ease-in-out infinite alternate;
}

#about-me p {
  font-size:24px;
  color:#ff4d6d;
  line-height:1.8;
  margin-top:30px;
  text-shadow:0 0 8px #ff0033;
}

.emojis {
  font-size:32px;
  margin-top:30px;
  animation:sparkle 3s infinite alternate;
}

@keyframes glow {
  0% {
    text-shadow:0 0 10px #ff0033;
  }

  100% {
    text-shadow:0 0 20px #ff3366,0 0 30px #ff0033;
  }
}

@keyframes sparkle {
  0% {
    opacity:.6;
    transform:scale(1);
  }

  100% {
    opacity:1;
    transform:scale(1.2);
  }
}