/** Placeholder CSS **/
.display-text {
  font-family: "Exile", serif;
  font-style: normal;
  font-size: 3em;
  color: #19073b;
  margin: 0;
}

body {
  background: url(cage-bg-tile.png) repeat 0 0;
  background-size: contain;
  color: #3a3a3a;
  font-family: "Libre Baskerville", serif;
}

body > div {
  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 900px;
  min-width: 250px;
  margin: 2% auto;
  padding: 16px 5%;
  position: relative;
}

body > div.main {
  background: #fff;
  border: 3px solid #31146a;
  box-shadow: 0 4px 12px #1b1b1b;
}

body > div.main img {
  width: 100%;
}

body > div > div {
  padding: 28px 0;
  width: 100%;
}

#header-wrapper {
  display: flex;
  align-items: baseline;
}

#header-wrapper > h1 {
  flex-shrink: 0;
}

h1 {
  color: #19073b;
  font-family: "Exile", serif;
  font-size: 4.85em;
  line-height: 1.2em;
  margin: 15px;
  padding-bottom: 11px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal;
}
h2 {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-weight: normal;
  text-align: right;
}
h3 {
  font-size: 1.6em;
  font-style: italic;
}
p {
  font-family: "Libre Baskerville", serif;
  line-height: 1.45em;
  font-size: 1.1em;
}
a {
  color: #0caade;
  font-size: 1.2em;
  font-style: italic;
  font-weight: bold;
}
a:hover {
  text-decoration: none;
}
ul {
  columns: 2;
  padding-left: 4%;
}
ul li {
  line-height: 1.4;
  padding: 6px 0;
}
sub {
  font-size: 0.6em;
  color: #666;
  font-style: italic;
}

img {
  display: block;
  max-width: 100%;
}

hr {
  border: 1px solid #bc4294;
  width: 60%;
}

#stat-counter > span {
  font-family: Verdana, Arial, sans-serif;
  font-size: 0.7rem;
  font-style: italic;
  text-shadow: 0 0 3px #fff;

  margin: -23px 0 0 -44px;
  padding-left: 48px;
  max-height: 13px;
  overflow: hidden;
}

#stat-counter .visitor-label {
  background-color: #d6deef;
}

#stat-counter .visitor-count {
  background-color: "transparent";
  font-weight: 700;
  letter-spacing: 0.835rem;
  padding-left: 5px;
}

#stat-counter img {
  max-width: max-content;
}

/** Media Queries **/

@media (max-width: 850px) {
  #header-wrapper {
    flex-wrap: wrap;
  }

  #header-wrapper > h1 {
    flex-shrink: 1;
  }

  h1 {
    font-size: 3.75em;
    margin: 0;
    padding: 0;
  }

  h2 {
    font-size: 1.4em;
  }

  h3 {
    font-size: 1.2em;
  }

  h1,
  h2 {
    display: block;
    text-align: center;
    width: 100%;
  }

  ul {
    columns: 1;
  }

  p {
    font-size: 1rem;
  }
}
