body {
  background-color: #fff;
  padding: 50px 20px;
  font: 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
  color: #595959;
}

.wrapper {
  max-width: 600px;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  font-size: 28px;
  font-weight: 500;
  color: #222;
  margin: 0 0 10px;
}

h2 {
  font-size: 18px;
  font-weight: 500;
  color: #393939;
  margin: 0 0 15px;
}

h3 {
  font-size: 16px;
  font-weight: 500;
  color: #393939;
  margin: 0 0 15px;
}

header p {
  margin: 0 0 15px;
  line-height: 1.6;
}

a {
  color: #39c;
  text-decoration: none;
}

a:hover {
  color: #069;
}

.profile-image {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  color: #595959;
}

.social-link:hover svg {
  opacity: 0.7;
}

section {
  margin-bottom: 30px;
}

section p {
  margin: 0 0 15px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin: 20px 0;
}

.nav-links a {
  font-size: 14px;
  color: #595959;
}

.nav-links a:hover {
  color: #39c;
}

.nav-links a.active {
  color: #39c;
}

.section-panel {
  border-left: 2px solid #e5e5e5;
  padding-left: 16px;
  margin-top: 10px;
}

.section-panel p {
  margin: 0 0 12px;
}

small {
  font-size: 11px;
  color: #777;
}

a small {
  display: inline;
}

hr {
  border: 0;
  background: #e5e5e5;
  height: 1px;
  margin: 20px 0;
}

strong {
  color: #222;
  font-weight: 500;
}


@media screen and (max-width: 480px) {
  body {
    padding: 20px 15px;
  }

  .profile-image {
    width: 120px;
    height: 120px;
  }

  .nav-links a {
    font-size: 13px;
  }
}

@media print {
  body {
    padding: 0.4in;
    font-size: 12pt;
    color: #444;
  }
}
