body {
  margin: 0;
  border: 0;
  padding-top: 0;
  padding-right: 20px;
  padding-bottom: 0;
  padding-left: 20px;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  border: 3px solid #000;
}

.card {
  width: 250px;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid #000;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.purple {
  background: #c7a5f9;
  justify-content: center;
}

.yellow {
  background: #ffd88a;
}

.blue {
  background: #a9f0f7;
}

.green {
  background: #9ff7b1;
}

.email {
  margin-top: 8px;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #9ff7b1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #000;
  font-size: 26px;
  color: #000;
  text-decoration: none;
}

.email i {
  color: #000;
}