/* styles.css */

body {
  background-color: hsl(44, 44%, 65%); /* Set background color to pink */
  color: #171a16;            /* Set font color to blue */
  font-family: 'Times New Roman', Times, serif; /* Set a default font */
  margin: 20px;             /* Remove default margin */
  padding: 20px;         /* Add some padding */
  background-image: 
    linear-gradient(rgba(102, 148, 91, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 116, 70, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
  background-attachment: fixed;
}

h1 {
  font-size: 2em;        /* Set font size for headings */
}

p {
  font-size: 1.2em;      /* Set font size for paragraphs */
}

ul {
  list-style-type: disc; /* Use disc style for list items */
  padding-left: 20px;    /* Add padding to the left of the list */
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
