blockquote {
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    border: 2px solid #e3eefa;
}

.card:has(.card-header-bg) {
    border: 0;
}

.card-header-bg {
    background-image: url(../images/card-header-bg.png);

    /* make the header minimum size the size of the image */
    min-height: 100px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    /* align text center */
    display: flex;
    align-items: center;
    justify-content: center;

    /* text stroke */
    text-shadow:
  -2px -2px 0 #6485d0,
   0   -2px 0 #6485d0,
   2px -2px 0 #6485d0,
  -2px  0   0 #6485d0,
   2px  0   0 #6485d0,
  -2px  2px 0 #6485d0,
   0    2px 0 #6485d0,
   2px  2px 0 #6485d0,

  -1px -1px 0 #6485d0,
   0   -1px 0 #6485d0,
   1px -1px 0 #6485d0,
  -1px  0   0 #6485d0,
   1px  0   0 #6485d0,
  -1px  1px 0 #6485d0,
   0    1px 0 #6485d0,
   1px  1px 0 #6485d0;

    color: #ffffff;

    font-size: 2.5rem;
    font-weight: bolder;
    font-family: Monotype Corsiva, serif;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: #6e91df !important;
}

.spoiler {
    border: 0;
}

.spoiler:has(.eye) {
    /* move to the right */
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
}

.spoiler:has(.eye) .spoiler-toggle {
    width: 100%;
    padding-left: 60px;
    position: relative;
}

.spoiler:has(.eye) .spoiler-text {
    padding-top: 2em;
}

.spoiler-toggle {
    border-radius: 2em;
    background-color: #d4e7fb;
    color: #4b79bb;
}

.spoiler-text {
    border: 0;
}

.spoiler-eye {
  position: absolute;
  top: -15px;
  left: -10px;
  width: 65px;
  height: 65px;
  cursor: pointer;
  pointer-events: auto;
  z-index: 1;
}