/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color:lightblue ;
  color: black;
  font-family: Verdana;
}
next-button {
  background-color: #4CAF50; /* A green color for the button */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none; /* Remove the underline from the link */
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer; /* Change the cursor on hover */
  border-radius: 8px; /* Round the corners */
}