#profile_info {
  padding: 2rem 1rem 1rem 2.5rem;
}


header {
  background-color: var(--bg-color);
  border-radius: 10px;

  padding: .5rem;
  color: var(--white-1);

  display: flex;
  grid-gap: 1rem;

  align-items: center;
  justify-content: left;
}


.profile-image {
  width: 80px;
  height: 80px;

  border-radius: 10px;
}


header h1 {
  font-size: 10px;
  font-weight: normal;
  font-style: italic;
}

header span {
  font-weight: bold;
}


button.btn-link, button.btn-link a {
  transition: .4s ease;
}

button.btn-link {
  background-color: transparent;
  border: 1px solid var(--bg-color);

  width: 100%;
  height: 3rem;

  margin-top: 1rem;
  border-radius: 7px;
}


button.btn-link a {
  color: var(--white-1);
  display: block;
  font-size: .6rem;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: left;
}


button.btn-link .icon {
  font-size: 1.2rem;
  width: 3rem;
}


button.btn-link:hover {
  border-color: var(--blue-1);
}

button.btn-link:hover a {
  color: var(--blue-1);
}


#easter_egg {
  animation: spawn .4s ease backwards;
}


.easter-egg-btn {
  border: none;
  border-radius: 50%;
  background-color: transparent;

  height: 1rem;
  width: 1rem;

  color: var(--profile-bg);
  cursor: pointer;

  position: absolute;
  bottom: 1rem;
  right: 1rem;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: .7rem;
  transition: .5s;
}

.easter-egg-btn:hover {
  background-color: var(--bg-color);
}
