:root {
  --text: #1d75af;
  --btn-text: #74aaec;
  --header-text: #cc9b5c;
  --header-text-hover: #c27b3d;
  --wrapper-background: white;
  --wrapper-background-shadow: #d5ebf0;
  --primary-background: #fdf6ed;
  --secondary-background: #e5f7ff;
}

/* ==========================================================================
   General
   ========================================================================== */
* {
  font-size: 1.02em;
}

body {
  background: linear-gradient(0deg, var(--secondary-background) 0%, var(--primary-background) 40%);
  color: var(--text);
  font-family: 'Dosis', sans-serif;
}

h1, h5, h6 {
  text-align: center;
  letter-spacing: 5px;
}

h1, h6 {
  color: var(--header-text);
}

img {
  max-width: 100%;
  border-radius: .25rem;
}

a {
  color: var(--header-text);
}
a:hover {
  color: var(--header-text-hover);
  text-decoration: none;
}

hr {
  border-top: 1px dashed var(--text);
  width: 75%;
  margin: 1rem auto;
}

.wrapper {
  background-color: var(--wrapper-background);
  padding: 1rem 5rem;
  min-height: 100vh;
}

.gap {
  column-gap: 1rem;
}

.bio-blurb {
  font-style: italic;
  padding-left: 1rem;
  border-left: 1px dashed var(--text);
}

.bio-traits {
  font-style: italic;
  opacity: .8;
}


/* ==========================================================================
   Galleries
   ========================================================================== */
.gallery {
  line-height: 0;
  column-gap: 0px;
}
.display-xs {
  display:none;
}
@media only screen and (max-width: 399px) {
  .gallery {
    column-count: 1;
  }
  .display-xs {
    display: block;
  }
  .hide-xs {
    display: none;
  }
}
@media only screen and (max-width: 685px) and (min-width: 400px) {
  .gallery {
    column-count: 2;
  }
}
@media only screen and (min-width: 686px) and (max-width: 1000px) {
  .gallery {
    column-count: 3;
  }
}
@media only screen and (min-width: 1001px) {
  .gallery {
    column-count: 4;
  }
}

.gallery-image {
  border-radius: .5rem;
  margin: .25rem;
}

/* ==========================================================================
   ARPG Tracker Galleries
   ========================================================================== */
.arpg-image {
  max-width: 275px;
}

.arpg-gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
}

.arpg-item-image img {
  max-height: 200px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

button {
  border: none;
  padding: .25rem 1rem;
  border-radius: .5rem;
  margin-bottom: 1rem;
}
button:hover {
  filter: drop-shadow(.4rem .4rem .1rem var(--wrapper-background-shadow));
}
button:focus {
  outline: none;
}

.btn-primary-call {
  padding: .5rem 1rem;
  min-width: 75%;
  background-color: var(--header-text);
  color: var(--wrapper-background);
  transition: all .3s ease-in-out;
}
.btn-primary-call:hover {
  color: var(--wrapper-background);
}
.btn-primary-call:focus {
  background-color: var(--header-text-hover);
}

.btn-call {
  background-color: var(--wrapper-background);
  color: var(--header-text);
  border: 1px solid var(--header-text);
  font-weight: bold;
  transition: all .3s ease-in-out;
}
.btn-call:hover {
  color: var(--header-text);
}
.btn-call:focus {
  background-color: var(--header-text);
  color: var(--wrapper-background);
}

.btn-regular {
  background-color: var(--wrapper-background);
  color: var(--btn-text);
  border: 1px solid var(--btn-text);
  font-weight: bold;
  transition: all .3s ease-in-out;
}
.btn-regular:hover {
  color: var(--btn-text);
}
.btn-regular:focus {
  background-color: var(--btn-text);
  color: var(--wrapper-background);
}