/*Sahar Stern July 30th, 2026*/
/* the name Zen garden gives off a green vibe do I coloured all the text green (except for links which are purple just so its obvius that they exist because otherwise its really hard to tell)*/
body {
/*set arial as font*/
    font-family: arial,sans-serif;
/*green text and background*/
    background: green;
    color: green;
  /*distance between each line*/
    line-height: 1.5;
}

/* big white box that covers most page*/
.page-wrapper {
    max-width: 1000px;
    margin: 1px ;
    padding: 20px;
    background: white;
}

/* changes tittles colour to green */
h1, h2, h3 {
    color: green;
}
/*puts main title in the center*/
h1 {
    text-align: center;
}

/* makes links purple */
a {
    color: purple;
}

/* footer stuff */
footer {
  /*puts footer title in the center*/
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
  /*grey line that separates the footer from the top of the page*/
    border-top: 1px solid grey;
}