html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #800000;
  background: linear-gradient(#f6d6b8 0%, #f7eed8 18%, #f9f6e9 40%, #f9f7ec 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a {
  color: #800000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

#wrapper {
  width: 728px;
  margin: 0 auto;
  padding: 10px 0 40px;
}

#top {
  text-align: center;
  padding: 8px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #8b0000;
  line-height: 1;
}

.bio-page {
  width: 100%;
  background: #fff;
  border: 1px solid #b86a53;
}

.bio-header {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  background: #f1b48c;
  color: #7f0000;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid #b86a53;
}

.bio-title {
  text-transform: none;
}

.bio-meta {
  font-size: 11px;
  font-weight: 400;
}

.bio-body {
  padding: 16px 14px 18px;
  line-height: 1.5;
  color: #7f0000;
}

.bio-name {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #8b0000;
}

.bio-line {
  margin: 0 0 8px;
}

.bio-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #e0b29c;
}

.bio-links a {
  display: inline-block;
  padding: 2px 0;
  font-weight: 700;
}

@media (max-width: 760px) {
  #wrapper {
    width: calc(100% - 12px);
  }

  .bio-name {
    font-size: 20px;
  }
}