/* Reset default margins/padding, and take full browser height */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Container flexes to fill screen and centers its content */
.svg-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Embedded SVG expands to fill width, keeps aspect ratio, 
   and cannot exceed 100% of the container’s height */
.svg-embed {
  width: auto;
  max-width: 80%;
  height: auto;
  max-height: 80%;
  /* Remove default border, padding, etc., if any */
  border: none;
}

.foot {
  margin-top: 30px;
  font-size: small;
  color: gray;
}

blockquote {
  width: 70%
}