    body {
      margin: 0;
      font-family: 'Playfair Display', 'Helvetica Neue', 'Hanken Grotesk', sans-serif;
      background-color: #f9f9f9;
      color: #333;
    }
	h1 a {
	  text-decoration: none;
	  color: #333;
	}
    header, footer {
      background-color: #fff;
      text-align: center;
      padding: 1em;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
	footer {
		font-size: 85%;
		color: #888888;
	}
    nav a,
	footer a {
      margin: 0 1em;
      text-decoration: none;
      color: #333;
    }
	h1 a:hover,
	nav a:hover,
	footer a:hover  {
	  text-decoration: underline;
	}
    .container {
      padding: 2em;
      max-width: 960px;
      margin: auto;
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1em;
    }
    .gallery img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .resume {
      margin-bottom: 2em;
    }
    .resume h3 {
      margin-bottom: 0.5em;
    }
	.resume {
	  max-width: 600px;       /* max width on large screens */
	  width: 90%;             /* use 90% of container width on small screens */
	  margin: 0 auto 2em auto; /* center horizontally with bottom margin */
	  padding: 1em;
	  box-sizing: border-box; /* include padding in width */
	  background-color: #fff;
	  border-radius: 8px;
	  box-shadow: 0 0 8px rgba(0,0,0,0.1);
	}
    .accomplishments img {
      width: 100%;
      max-width: 400px;
      margin: 1em 0;
      border-radius: 8px;
    }
	.social-links {
	  margin-top: 1em;
	  display: flex;
	  justify-content: center;
	  gap: 1em;
	}

	.social-links img {
	  width: 24px;
	  height: 24px;
	  filter: grayscale(100%);
	  transition: filter 0.3s ease;
	}

	.social-links img:hover {
	  filter: grayscale(0%);
	}
	nav a,
	.social-links img {
	  opacity: 0.4;
	  transition: opacity 0.3s ease;
	}

	nav a:hover,
	.social-links img:hover {
	  opacity: 1;
	}
	.social-gallery {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: center;
	  gap: 2em;
	  margin-top: 2em;
	}

	.social-gallery img {
	  width: 60px;
	  height: 60px;
	  opacity: 0.6;
	  transition: opacity 0.3s ease, transform 0.3s ease;
	}

	.social-gallery img:hover {
	  opacity: 1;
	  transform: scale(1.1);
	}
	.smallcaps {
	  font-family: 'Playfair Display', serif;
	  font-variant: small-caps;
	  letter-spacing: 0.05em;
	  font-size: 1.65em;
	}