/* This is the CSS for the ID used on page 2. */ RED 
  font-size: 24px;
  color: green;
}

/* Feel free to add more CSS here! */





/* The CSS below is for the way the website and book look. Be careful when making changes! */

body {
	/* Changing the style below will change the color of the background. */
  background-color: green;
}

#book {
  height: 500px;
  width: 720px;
  /* Changing the style below will change the color of the book. */
	background-color: maroon;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  margin: auto;
}

.page {
  height: 500px;
  width: 350px;
  /* Changing the style below will change the color of the pages. */
  background-color: white; 
  /* Changing the style below will change the default color of the text on the pages. */
  color: black;
  margin: 0px;
  display: inline-block;
}

#inbetween {
  height: 500px;
  width: 20px;
  /* If you change the color of the pages, be sure to change the gradient below to match! */
  background-image: linear-gradient(to right, white, grey, white); 
  margin: 0px; 
  display: inline-block;
 }

#pages {
  display: none;
}

#buttoncontainer {
	width: fit-content;
  margin: auto;
  padding: 4px;
}

button {
  /* This style below is for the color of the buttons. */
  background-color: maroon;
  border: none;
  color: white;
  width: 150px;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

button:active {
  /* This style is for the color of the buttons when they are clicked. */
  background-color: pink;
}