/* 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." */
/* Base styles */
body {
  background-color: #f9f6f1;
  color: #3e3e3e;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  font-size: 17px;
  margin: 0;
  padding: 0;
  max-width: 700px;
  margin: 4rem auto;
  padding: 0 1rem;
  background-image: url(https://i.pinimg.com/736x/64/35/ff/6435ff1b9ef8cf20613e0325cf198e6e.jpg);
  background-repeat: no-repeat;
  background-size: cover; /* This makes the image cover the whole background */
  background-position: center; /* This centers it */
}

/* Headings */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #2b2b2b;
  margin-top: 2rem;
  text-align: left;
}

/* Links */
a {
  color:#000;
  text-decoration: none;
  transition: 0.2s ease;
}
a:hover {
  color: #a382c3;
  text-decoration: underline;
}

/* Blog post box */
.article {
  background: #ffffffcc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  backdrop-filter: blur(3px);
}

/* Navigation */
nav {
  text-align: center;
  margin-bottom: 3rem;
}
nav a {
  margin: 0 12px;
  font-weight: bold;
}

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

/* Optional spacing for paragraphs */
p {
  margin-bottom: 1.2rem;
}

/* Optional subtle animation */
.article, h1, h2, h3, p {
  animation: fadeIn 0.8s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
