/* 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 {
  margin: 0;
  padding: 0;
  background-color: #fdfdfd;
  color: #111;
  font: 400 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
  max-width: calc(800px - (30px * 2));
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
  border-top: 5px solid #424242; /* black line at the top */
}

h1 {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1; 
}

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 10px;
  text-align: center;
}

footer {
  text-align: center;
  padding: 30px;
  color: black;
  border-top: 2px solid #424242; /* black line at the top */
}

.author {
  color:#828282;
  font-size:14px; 
}

img {
  float: center;
  width:  100%;
  height: 100%;
  object-fit: cover;
  padding-right: 10px;
  padding-left: 10px;
}