<blockquote>
  <p>If you think math is hard, try web design.</p>
  <footer>--Trish Parr</footer>
</blockquote>
@import url('https://fonts.googleapis.com/css?family=Indie+Flower&display=swap');

html, body {
  display: grid;
  justify-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

blockquote p {
  position: relative;
  margin: 5px 0;
  padding: 15px 75px;
  background-color: #eee;
  font-family: 'Indie Flower', cursive;
  font-size: 2rem;
}

blockquote p::before, blockquote p::after {
    position: absolute;
    top: -15px;
    color: #999;
    font-family: georgia;
    font-size: 8rem;
}

blockquote p::before {
    content: '\201C';
    left: 0;
}

blockquote p::after {
    content: '\201D';
    right: 0;
}

blockquote footer {
  font-family: 'Indie Flower', cursive;
  font-size: 1.5rem;
  text-align: right;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.