.body {
  position: relative;
  padding: 4em;
  max-width: 640px;
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: stretch;

  user-select: none;
  cursor: pointer;

  color: #fff;
}

.body-content {
  position: relative;
  z-index: 10;
  flex: 1;

  display: flex;
  flex-direction: column;

  pointer-events: none;
}

.blob {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.body-quote {
  position: relative;
  margin-bottom: 1em;
  font-family: 'Quicksand', 'Helvetica Neue', sans-serif;
  font-size: 1.6em;
}

.body-quote .real {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.body-quote .layout {
  visibility: hidden;
}

.body-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.body-footer-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.2em;
}

.body-footer-caption-name {
  font-weight: 600;
}

.body-footer img {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-right: 1.5em;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 500px) {
  .body {
    padding: 4em 2em;
  }
}
