body {
  margin: 0;
  padding: 0;
  font-family: 'Yomogi', cursive;
  background:
    repeating-linear-gradient(
      135deg,
      #f3e8ff,
      #f3e8ff 20px,
      #ede9fe 20px,
      #ede9fe 40px
    ),
    linear-gradient(to bottom right, #e0ccff, #d1b3ff);
  color: #4c1d95;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.overlay {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(160, 120, 255, 0.4);
  max-width: 400px;
  width: 90%;
  animation: fadeIn 1s ease-in-out;
  border: 4px dotted #c084fc;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #a855f7;
  box-shadow: 0 0 15px #d8b4fe;
  object-fit: cover;
  margin-bottom: 15px;
}

.name {
  font-size: 2em;
  background: #ede9fe;
  display: inline-block;
  padding: 8px 20px;
  border: 3px double #7e22ce;
  border-radius: 20px;
  transform: rotate(2deg);
  box-shadow: 3px 3px 0 #c084fc;
  margin-bottom: 20px;
  color: #6b21a8;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  background-color: #e9d5ff;
  color: #4c1d95;
  padding: 12px 20px;
  border-radius: 20px;
  border: 2px dashed #a855f7;
  box-shadow: 4px 4px 0 #c084fc;
  transform: rotate(-2deg);
  transition: all 0.3s ease;
  width: 140px;
}

.link:hover {
  transform: rotate(0deg) scale(1.05);
  background-color: #f3e8ff;
  box-shadow: 6px 6px 0 #a855f7;
}

.link img {
  height: 20px;
  width: 20px;
  border-radius: 5px;
}
