/* 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 {
  background-color: white;
  color: black;
  font-family: Verdana;
  background-image: url('FUR02.png');
  background-repeat: repeat;
}

/* -------------------------------------------------
   The container that holds everything on the page
   ------------------------------------------------- */
.wrapper {
    max-width: 800px;               /* maximum width of the box */
    margin: 40px auto;              /* centers horizontally + adds vertical space */
    padding: 20px;                  /* inner spacing */
    background-color: #ffffff;     /* white background */
    border: 4px solid #ff69b4;      /* pink border – adjust thickness/color if needed */
    box-sizing: border-box;         /* includes padding/border in the width calculation */
    border-radius: 8px;             /* optional – rounded corners */
}

/* Hover state */
a:hover,
a:focus {                     /* also works for keyboard navigation */
    background-color: #ff69b4;   /* hot‑pink */
    color: #000;                 /* optional – make text readable */
    border-radius: 2px;          /* slight rounding so the pink looks neat */
}