@charset "utf-8";
/* CSS Document */
body {
  background-size: cover;
  background-image: url("../images/reflections-bkg.jpg");
  background-position: top center;
}
main .card {
  width: 22.5vw;
  min-width: 340px;
  background: transparent;
  margin: 0rem 1rem 1.5rem 1rem;
}
main .card .card-header {
  background-color: rgba(74, 63, 131, .8);
  padding-top: 15px;
  padding-bottom: 0px;
  border-radius: .375rem .375rem 0rem 0rem;
}
main .card .card-header h3, main .card .card-header h3 .small {
  color: rgba(255, 255, 255, 1);
  font-family: 'Felipa', serif;
}
.small {
  font-size: 0.75em;
}
main .card-body {
  padding-top: 0;
  border-width: 15px 15px 15px 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .5);
  border-radius: 0rem 0rem .375rem .375rem;
}
main .card-body p {
  margin-bottom: .2rem;
  padding-left: 15px;
  text-indent: -15px;
}
main .card-body p:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
main .card-body img {
  margin-top: 1rem;
}
main .pre-scrollable {
  min-height: 300px;
  max-height: 50vh;
  overflow-y: scroll;
}
footer {
  margin-top: 0;
}
@media (min-width: 768px) {
  main .pre-scrollable {
    max-height: 70vh;
  }
}
.poem::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}
.poem::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.poem::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgba(74, 63, 131, 1);
}