@charset "UTF-8";

body {
  background-image:url(https://images.unsplash.com/photo-1610208956588-61f6c2e6136a?q=80&w=2070&auto=format&fit=crop);
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center;
  font-family:'Open Sans',sans-serif;
  color:#eee;
  margin:0;
  padding:0;
}

.dark-profile {
  max-width:500px;
  margin:30px auto;
  padding:10px;
}

.dark-pic img {
  display:block;
  margin:0 auto 15px;
  border-radius:50%;
  width:100px;
  height:100px;
  border:3px solid #b366ff;
  box-shadow:0 0 12px #a100ff;
  animation:sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
  0%,100% {
    box-shadow:0 0 8px #b366ff,0 0 15px #a100ff,0 0 20px 3px rgba(255,182,193,0.7);
  }

  50% {
    box-shadow:0 0 12px #e0aaff,0 0 25px #d97aff,0 0 30px 5px rgba(255,182,193,1);
  }
}

.dark-title {
  font-family:'Marck Script',cursive;
  text-align:center;
  font-size:36px;
  color:#e9aaff;
  text-shadow:0 0 8px #ff69f0,0 0 20px #ff69f0;
  animation:pulseGlow 3s ease-in-out infinite;
  margin-bottom:25px;
}

@keyframes pulseGlow {
  0%,100% {
    text-shadow:0 0 8px #ff69f0,0 0 20px #ff69f0;
  }

  50% {
    text-shadow:0 0 12px #ffb6c1,0 0 30px #ffb6c1;
  }
}

.dark-section {
  background:linear-gradient(270deg,rgba(138,43,226,0.85),rgba(173,72,227,0.95),rgba(138,43,226,0.85));
  background-size:1000px 100%;
  animation:shimmer 6s linear infinite,fadeIn 1s ease-out forwards;
  transition:box-shadow .3s ease;
  color:white;
  padding:20px;
  border-radius:15px;
  box-shadow:0 0 15px #5B7FFF;
  margin-bottom:25px;
  opacity:0;
  transform:translateY(20px);
}

.dark-section:hover {
  box-shadow:0 0 30px #b066ff;
  cursor:pointer;
}

@keyframes shimmer {
  0% {
    background-position:-500px 0;
  }

  100% {
    background-position:500px 0;
  }
}

@keyframes fadeIn {
  from {
    opacity:0;
    transform:translateY(20px);
  }

  to {
    opacity:1;
    transform:translateY(0);
  }
}

.delay-1 {
  animation-delay:.5s;
}

.delay-2 {
  animation-delay:1s;
}

.delay-3 {
  animation-delay:1.5s;
}

.dark-section h2 {
  font-family:'Marck Script',cursive;
  text-align:center;
  color:#ffccff;
  font-size:24px;
  margin-bottom:10px;
}

.dark-section p,.dark-section li {
  font-size:16px;
  color:#e5d2f7;
  text-align:center;
}

.dark-section ul {
  list-style:none;
  padding-left:0;
  margin:0;
}

.dark-section li {
  padding:5px;
  border-bottom:1px dashed #9f5aff;
}