body {
  padding: 6% 10%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: #f4f9f7;
}
a,
::before,
::after {
  transition: all 0.3s;
}
::selection {
  color: #fff;
  background-color: #00a74a;
}
.name {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  color: #38453f;
}
.nick-name {
  margin-bottom: 25px;
  font-size: 28px;
  color: #535f59;
}
.info {
  font-size: 24px;
  margin-bottom: 60px;
  color: #525956;
}
.info-item {
  display: flex;
  margin-bottom: 15px;
}
.info-type {
  flex-shrink: 0;
  color: #868b89;
}
.info-item:not(:nth-child(3)):not(:nth-child(4)) .info-content {
  padding-left: 6px;
}
.info-item:nth-child(3) .info-content,
.info-item:nth-child(4) .info-content {
  transform: translateY(-3px);
}
.link {
  display: inline-block;
  position: relative;
  padding: 3px 6px;
  margin-right: 4px;
  margin-bottom: 4px;
  color: #555;
  text-decoration: none;
}
.link::before {
  margin-right: 3px;
  font-size: 22px;
  color: rgba(0, 0, 0, 0.6);
}
.link[data-type="tag"] {
  content: "#";
}
.link[data-type="site"] {
  content: "@";
}
.link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 3px;
  background-color: #dfefe9;
}
@media (any-hover: hover) {
  .link:hover {
    color: #fff;
  }
  .link:hover::before {
    color: rgba(255, 255, 255, 0.6);
  }
  .link:hover::after {
    height: 100%;
    background-color: #00a74a;
  }
}
.record {
  display: block;
  margin-bottom: 15px;
  color: #868b89;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
}
.record img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
}
#record {
  display: none;
}
