/* 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;
  font-family: Verdana;
}

.cite{
  position: fixed;
  bottom: 0%;
  right: 0%;
}

.grad-text{
  background: linear-gradient(90deg,#c8b6ff,#b9e6ff,#ffe5ec);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color: transparent; color: transparent;
  display:inline-block;
  letter-spacing:.08em;
}

/* Layout container */
.page{
  max-width: 900px;
  margin: 24px auto;
  padding: 0 16px;
}

/* Headings */
h1{ margin: 8px 0 4px; font-size: 42px; letter-spacing:.04em; }
h3{ margin: 8px 0 12px; color:#555; }

/* Simple nav bar */
.nav{
  display:flex; gap:10px; flex-wrap:wrap;
  margin: 12px 0 18px;
}
.nav a{
  text-decoration:none;
  color:#222;
  background:#ffffffcc;
  border:1px solid #eee;
  padding:6px 10px;
}
.nav a:hover{ background:#fff; }

/* Lists & links */
ul{ padding-left: 20px; }
a{ color:#3b42ff; }
a:hover{ text-decoration: underline; }

/* Optional: soft “mall” background grid (replace body’s background-color) */
body{
  margin:0;                      /* removes browser default margin */
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background:
    linear-gradient(90deg,#ffffff40 1px,transparent 1px),
    linear-gradient(0deg,#ffffff40 1px,transparent 1px),
    linear-gradient(180deg,#f5f0ff 0%,#eef7ff 55%,#fff5f7 100%);
  background-size:48px 48px,48px 48px,100% 100%;
  background-attachment: fixed;
}
