html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.profile-image {
  display: block;
  width: 14rem;
  height: 14rem;
  border-radius: 9999px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgb(226 232 240);
}

@media (min-width: 640px) {
  .profile-image {
    width: 16rem;
    height: 16rem;
  }
}

@media (min-width: 1024px) {
  .profile-image {
    margin-left: auto;
  }
}