body {
  text-align: center;
}

a {
  color: black;
  text-decoration: none;
}

h1 {
  font-size: 2em;
  text-shadow: 0px 0px 10px #333;
}

img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0px 0px 10px#000;
}

img:hover {
  box-shadow: 0px 0px 10px green;
}

.container {
  width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.article {
  width: 860px;
  border-bottom: 1px dotted black;
  margin-bottom: 30px;
  padding-left: auto;
  padding-right: auto;
}
.article:last-child {
  border-bottom: none;
}

.article h2 {
  margin-left: auto;
  margin-right: auto;
  width: 800px;
  background-color: skyblue;
  padding: 5px;
  text-align: center;
}

.article p {
  margin-left: auto;
  margin-right: auto;
  width: 800px;
  text-align: justify;
}

.article-meta span {
  display: block;
  text-align: right;
  padding-right: 30px;
}
