body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
}

.profile {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: black;
  width: fit-content;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  width: 70%;
  background-color: black;
  justify-content: flex-start;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.links a {
  display: inline-flex;
  background-color: black;
  padding: 6px 12px;
  border-radius: 100px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  gap: 6px;
  border: 2px solid white;
  border-radius: 100px;
}

.links a:hover {
  background-color:white;
  color: black;
}

.icon-black {
  display: none;
}

.mail-link:hover .icon-black {
  display: inline;
}

.mail-link:hover .icon-white {
  display: none;
}