@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

body {
    font-family: 'Marcellus', serif;
    background-color: #f6f1eb;
    color: #3e2f1c;
    margin: 0;
    padding: 20px;
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
}

h1, h2, h3 {
    color: #5e3c1f;
    border-left: 5px solid #bfa37c;
    padding-left: 10px;
    margin-bottom: 10px;
}

section {
    margin-bottom: 40px;
    background-color: #fff8ee;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(62, 47, 28, 0.2);
}

  ul {
    list-style: square;
    margin-left: 20px;
  }

  li {
    margin-bottom: 5px;
  }

  a {
    color: #8a6e3e;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  button {
    background-color: #bfa37c;
    color: white;
    border-radius: 10px;
    border: 2px solid #bfa37c;
  }
