/* 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;
}

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


iframe {
    width: 500px; /* It should not be 100% */
    height: 500px;
    margin-left: auto;   /* Automatic margin from left */
    margin-right: auto; /* Automatic margin from right */
      } 