* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  line-height: 1.25;
  padding: 60px 20px;
}

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

header {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 60px;
}

header img,
dd.with-image img {
  user-select: none;
  pointer-events: none;
}

header img {
  width: 140px;
  height: auto;
  border-radius: 7px;
  flex-shrink: 0;
}

.social {
  margin-bottom: 16px;
}

.social a {
  margin-right: 16px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 8px;
}

dt {
  font-weight: 600;
}

dt:not(:first-of-type) {
  margin-top: 32px;
}

dd {
  margin-top: 8px;
  position: relative;
}

dd.with-image img {
  position: absolute;
  left: -56px;
  top: calc(-8px - 0.625em);
  transform: translateY(-50%);
  max-width: 40px;
  max-height: 40px;
  border-radius: 15%;
}

section {
  margin-top: 40px;
}

section h4 {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  header img {
    width: 100px;
    border-radius: 5px;
  }

  h1 {
    font-size: 1.5em;
  }

  dt,
  dd,
  section {
    padding-left: 48px;
  }

  dd.with-image img {
    left: 0;
  }
}
