/* Personal Site / Home Page */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: #aeebb9;           /* Background color */
  color: #1f2937;               /* Default text color */
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
}

/* Header and footer styling */
header,
footer {
  background: #ebe7df;
  padding: 1rem 1.5rem;
  font-family: "Montserrat", Arial, sans-serif;
  text-align: center;            /* centers header/footer contents */
}

/* Main content layout */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Headings */
h1 {
  margin: 0.75rem 0;             /* cleaner than only margin-bottom */
  text-align: center;
}

h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

p {
  margin: 0.75rem 0;
}

/* Links (general) */
a {
  color: #0000EE;
  text-decoration: underline;
}

a:hover {
  color: #ff0800;
}

/* Navigation */
.site-nav {
  display: flex;
  justify-content: center;       /* centers links */
  gap: 1rem;                     /* spacing between links */
  flex-wrap: wrap;               /* wrap on smaller screens */
  margin-top: 0.75rem;
}

/* Only nav links get padding (NOT every link on the whole page) */
.site-nav a {
  padding: 0.25rem 0.5rem;
  text-decoration: none;         /* looks cleaner for nav */
}

.site-nav a:hover {
  text-decoration: underline;
}

/* Figures */
figure {
  text-align: center;
  margin: 1.5rem auto;
}

figure img {
  display: block;
  margin: 1rem auto;
}

figcaption {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}






