/* ================================
   Read Here Homepage Styles
   ================================ */

/* Make sure the html and body fill the full viewport height and remove default margins */
html, body {
  height: 100%;   /* stretch to full screen height */
  margin: 0;      /* remove browser default white margin */
}

/* Body: setup the overall look and centering */
body {
  background: #fff;              /* set background color to white */
  display: flex;                 /* use flexbox layout */
  justify-content: center;       /* horizontally center content */
  align-items: center;           /* vertically center content */
  font-family: Arial, sans-serif;/* set a clean font */
  text-align: center;            /* align text inside body to center */
}

/* Nav: container for the links */
nav {
  display: flex;                 /* make nav a flexbox */
  flex-direction: column;        /* stack links vertically (column) */
  gap: 12px;                     /* add space between each link */
}

/* Links: base style and override default blue/purple */
nav a,
nav a:link,
nav a:visited,
nav a:hover,
nav a:active {
  color: #000 !important;        /* force black text for all link states */
  text-decoration: none;         /* remove underline by default */
  font-size: 12px;               /* small, neat font size */
  display: block;                /* make links behave like block elements (easier stacking) */
  transition: transform .15s ease; /* smooth scaling animation on hover */
}

/* Links on hover: subtle interaction */
nav a:hover {
  text-decoration: underline;    /* add underline on hover */
  transform: scale(1.03);        /* slightly enlarge the link */
}
