html {
  scroll-behavior: smooth;
}

body {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI";
  background-color: #f5efe3;
  color: #3d2a3d;
  line-height: 1.65;
  font-size: 1.05rem;
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
}

header {
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  color: #3d1f3d;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.4rem;
}

nav a {
  color: #751f75;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

nav a:hover,
nav a:focus {
  color: #e477ea;
}

h2 {
  font-size: clamp(1.45rem, 3.5vw, 1.7rem);
  font-weight: 700;
  color: #751f75;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1.1rem;
  max-width: 65ch;
}

strong {
  font-weight: 600;
  color: #751f75;
}
strong:hover,
strong:focus {
  color: #e477ea;
}

img {
  height: 300px;
  width: 300px;
  float: right;
}

#name {
  max-height: 25px;
}
