/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
   <3 thanks, Eric :-)
*/

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;
}
/* Box sizing rules */
*, *::before, *::after {
  box-sizing: border-box;
}
/* blockquote */
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}


/* ........My styles...... */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600&family=Playfair+Display:wght@700&display=swap');


body {
  background: #eae7dc; 
  color: #2b2b2b;
  font-family:"Lora", Georgia, "Times New Roman", Times, serif;  
  line-height: 1.6;
  font-size: 19px;
}

main{
  display: flex;
  height: 100vh;
}



/* Aside.........
.................. */
aside{
  width: 40%;
  margin: auto;
  padding: 0rem 2rem;
}

aside h1 {
  font-family:"Playfair Display", Georgia, "Times New Roman", Times, serif;  
  font-size: 2.8rem;
  text-align: center;
  color: #ac6440;
  margin-bottom: 0.3rem;
}

aside p {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2b2b2b;
  opacity: 0.7;
  font-style: italic;
}

aside p:nth-of-type(3) {
  padding-bottom: 2rem;
}


/* Navigation Bar...........*/

nav {
  padding: 2rem 0;
  border-bottom: 2px solid #d6d3c9;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0 3rem;
  gap: 2.2rem;
}

nav a {
  position: relative;
  text-decoration: none;
  color: #ac6440;;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s; 
  padding-bottom: 3px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; 
  width: 0%;
  height: 2px;
  background-color: #ac6440;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: #ac6440;      
  font-weight: 700;
  border-bottom: 3px solid #ac6440; 
}


/* Footer........................*/

footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.95rem;
  border-top: 2px solid #d6d3c9;
}

footer a {
  color: #ac6440;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
} 




/* Article.............
....................... */

article {
  width: 60%;
  overflow: auto; 
  padding: 3rem 4rem 0 4rem ;
  scrollbar-width: none;       
  -ms-overflow-style: none;  
  border-left: 1rem solid #d6d3c9;
  background-color: #fdf8ed; 
}

article h3{
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ac6440;
}

article::-webkit-scrollbar {
  display: none;              
}

blockquote{
  font-style: italic;
}

blockquote, article h2 {
  font-family:"Playfair Display", Georgia, "Times New Roman", Times, serif;  
  font-size: 1.5rem;
  font-weight: 700;
  color: #ac6440;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.3;
  padding: 0 1.5rem;
}

article p {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
}

article a {
  text-decoration: none;
  color: #ac6440;
}

article a:hover {
  text-decoration: underline;
} 

article p:first-of-type::first-letter {
  font-size: 3.6rem;
  float: left;
  line-height: 0.8;
  margin-right: 10px;
  color: #ac6440;
} 

article p strong {
  font-weight: 600;
  color: #ac6440;
  text-decoration: underline;
}

