/* Import Lexend Deca from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap');

/* Apply Lexend Deca as the default font */
body {
  background-color: #fdfdfd;
  color: #333333;
  font-family: 'Lexend Deca', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

  
  /* Main content area */
  main, .content {
    max-width: 700px;
    margin: 3rem auto;
    padding: 0 1rem;
  }
  
  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    font-family: "Segoe UI", Roboto, sans-serif;
    color: #222222;
    margin-top: 2em;
    margin-bottom: 0.5em;
    line-height: 1.3;
  }
  
  /* Paragraphs */
  p {
    margin: 1em 0;
    text-align: justify;
  }
  
  /* Links */
  a {
    color: #0066cc;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Center images */
  img {
    display: block;
    margin: 2rem auto;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
  }
  
  /* Blockquotes */
  blockquote {
    border-left: 4px solid #ccc;
    padding-left: 1em;
    color: #666;
    font-style: italic;
    margin: 2em 0;
  }
  
  /* Code blocks and inline code */
  pre, code {
    font-family: "Courier New", monospace;
    background-color: #f4f4f4;
    color: #2a2a2a;
    padding: 0.2em 0.4em;
    border-radius: 3px;
  }
  
  pre {
    overflow-x: auto;
    padding: 1em;
  }
  
  /* Horizontal rule */
  hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 3em 0;
  }
  