/* Reset */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Body styling */
body {
  background-color: #FDFCFB; 
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  padding: 2rem 1rem;
}

/* Navigation */
header ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

header a {
  text-decoration: none;
  color: #472519; 
  font-weight: 600;
  transition: color 0.3s ease;
}

header a:hover {
  color: #1A1A1A; 
}


h1 {
  font-family: 'Spectral', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #472519; 
}

h2 {
  font-family: 'Spectral', serif;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #472519;
}


/* Main content with fading gradient text */
main {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;

  /* Gradient text effect */
  background: linear-gradient(to bottom, #9d9d9d, #472519);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; /* Gradient fills text */
  color: #1A1A1A; 
}

/* Paragraph spacing */
main p, main blockquote {
  margin-bottom: 1.5rem;
}

/* Blockquotes */
blockquote {
  font-family: 'Spectral', serif;
  font-size: 1.5rem;
  text-align: center;
  font-style: italic;
  color: #472519;
  margin: 3rem 0;
}


/* Footer */
footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #868686;
}

footer a {
  color: #472519;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
