/* Reset browser defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 4rem auto 4rem auto;
  padding: 2rem;
  text-align: justify;
}

/* Headings: uppercase, same size as paragraph */
h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Section spacing */
section {
  margin-bottom: 2rem;
}

/* Paragraphs: normal casing, justified */
p {
  margin-bottom: 1rem;
}

/* Links: italic, underlined, with upward arrow ↗ */
a {
  font-style: italic;
  text-decoration: underline;
  color: inherit;
  transition: color 0.2s ease, background-color 0.2s ease;
  position: relative;
}

/* Adds the ↗ arrow after every link */
a::after {
  content: " ↗";
  font-size: 20px;
  font-style: normal;
}

.avatar {
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  border: 5px solid var(--accent-color); /* Thick outline */
  border-radius: 100%;        /* Rounded corners */
  max-width: 25%;
  height: auto;
}
