.summary-stats {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 400px 400px 400px;
  margin-top: 12px;
  @media (max-width: 600px ) {
    grid-template-columns: 100%;
  }
}
.statsBlock {
  background-color:#fff;
  /* border: 2px solid #bada55; */
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 0px 12px 12px;
  box-shadow: 2px 3px 5px #eee;
}

.statsBlock h3 {
  margin: 0 -12px 0 -12px;
  padding-left: 12px;
  padding-top: 12px;
  background-color: #ddd;
  padding-bottom: 12px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.statsBlock .stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  margin-top:12px;
}

.statsBlock .count {
  font-size: 44px;
  display: block;
}

.author-block {
  display: grid;
  grid-template-columns: 1fr 4fr;
}

.author-block .avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.author-block .author-info {
  padding-left: 12px;
}

:local(.primary) {
  color: red;
}

html {
  border-top:12px solid #B02E0C;
}

body {
  margin: 0;
}

#app {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  font-family: 'Helvetica';
  font-size: 22px;
}

h2 {
  font-size: 1.2em;
}

p {
  line-height: 30px;
}

button {
  font-size: 25px;
  background-color: #EB4511;
  border-radius: 6px;
  padding: 9px 16px;
  color: #fff;
  text-shadow: 1px 2px 4px #000000CC;
  cursor: pointer;
}

.auth-form {
  font-size: 20px;
}

.auth-form input {
  font-size: 20px;
}

.auth-form em {
  font-size:12px;
}

.auth-form label {
  display: inline-block;
  width: 230px;
  line-height: 36px;
}

.auth-form button {
  font-size: 18px;
  margin-left: 230px;
}

.author-story-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.story-card {
  width: 49%;
  border: 2px solid #ccc;
  border-radius: 6px;
  box-shadow: 2px 3px 5px #eee;
  margin-bottom: 14px;
}

.story-card .title {
  display: block;
  padding-bottom: 12px;
  font-size: 1.17em;
  font-weight: bold;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #eee;
  padding-top: 12px;
  padding-left: 12px;
}

.story-card .story-cover {
  margin: 12px;
  height: 200px;
}

.card-body {
  display: flex;
  flex-direction: row;
}

.card-body .stats {
  display:flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 60px;
}

.card-body .stats div {
  line-height:32px;
}

img {
  background: azure;
}

footer {
  background-color: #b02e0c;
  align-content: center;
  margin-top: 24px;
  align-items: center;
  display: flex;
  padding: 24px;
  color: white;
  font-family: 'Helvetica';
  font-size: 18px;
  flex-direction: column;
}

footer .content {
  width: 45%;

}

footer .content h4 {
  text-decoration: underline;
}