* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background: #fff;
}
.personal {
  min-height: 100vh;
  padding: 24px;
}
.personal-content {
  width: 100%;
  max-width: 680px;
  margin: auto;
}
.profile {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 12px 0 32px;
}
.profile img {
  display: block;
  width: 110px;
  height: 110px;
  object-fit: cover;
  object-position: center;
  border: 8px solid #f4d47c;
  border-radius: 50%;
  margin-bottom: 16px;
}
.profile h1 {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 12px;
}
.pill {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 24px;
  border-radius: 100px;
  color: #111;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  background: var(--pill-color);
  box-shadow: 0 5px 15px 0 rgba(99, 76, 76, 0.1);
  transition:
    transform 0.25s,
    background-color 0.25s,
    color 0.25s,
    box-shadow 0.25s;
}
.red {
  --pill-color: #eb6150;
}
.pink {
  --pill-color: #f6d0dc;
}
.yellow {
  --pill-color: #f4d47c;
}
.green {
  --pill-color: #6cbe74;
}
.blue {
  --pill-color: #52aeeb;
}
.pill:hover {
  color: #111;
  background: #fff;
  transform: scale(1.025);
  box-shadow: 0 5px 15px 0 rgba(99, 76, 76, 0.15);
}
.pill:focus-visible {
  outline: 3px solid #111;
  outline-offset: 5px;
}
@media (prefers-reduced-motion: reduce) {
  .pill {
    transition: none;
  }
  .pill:hover {
    transform: none;
  }
}
