/* 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: white;
  color: black;
  font-family: Verdana;
.my-box {
  width: 300px; /* How wide the box is */
  height: 200px; /* How tall the box is */
  background-color: #f0f0f0; /* The inside color of your box */
  border: 2px solid #000000; /* A black border around the box */
  padding: 15px; /* Space between the text and the border */
  margin: 20px auto; /* Space outside the box, 'auto' centers it horizontally */
}

}