/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* =========================
   Body & general styling
========================= */
body {
  font-family: 'Courier New', monospace;
  background-color: white;
  color: black;
  margin: 0;
  padding: 0;
  cursor: url('blue-wand.png'), auto; /* custom cursor */
}

/* =========================
   Image container (flex layout)
========================= */
.image-container {
  display: flex;               /* horizontal layout */
  justify-content: center;     /* center the row */
  gap: 2rem;                   /* space between images */
  flex-wrap: wrap;             /* wrap on small screens */
  width: 100%;
  padding: 1rem 0;
}

/* =========================
   Make the entire figure clickable
========================= */
.figure-link {
  display: block;
  text-decoration: none;       /* remove underline */
  color: inherit;              /* keep text color */
}

/* =========================
   Figure styling
========================= */
.figure-link figure {
  display: flex;
  flex-direction: column;      /* stack image above caption */
  align-items: center;         /* center horizontally */
  width: 180px;                /* fixed width */
  margin: 0;
}

/* =========================
   Image sizing
========================= */
.figure-link img {
  width: 100%;
  height: 150px;
}
  
  .center-container {
  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
  height: 100vh;            /* full viewport height */
}


