:root {
    --color1: #FFFFFF;  /* WHITE */
    --color2: #000000; /* BLACK */
    --color3: #b3b3b3; /* GRAY */
    --font-date: "Source Code Pro", serif;
}

html {
    min-height: 100%;
    background: linear-gradient(-45deg, #bdbdbd, #dbd3d3, #b1c5d3, #0bb68e);
	background-size: 400% 400%;
	animation: gradientBG 8s ease infinite;
}

@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

a {
  text-decoration: none;
  color: var(--color2);
}

.siteContainer {
    margin: 0 auto;
    width: 100%;
    max-width: 933px; 
    border-left: 1px solid lightgray;
    border-right: 1px solid lightgray;
}

.maxWidth1000 {
    width: 100%; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.headerImage {
    margin-top: 20px;
    margin-bottom: -22px;
    width: 99%;
}

.headerImage img {
    width: 99%;
}

h1 {
    margin: auto;
    text-align: center;
    color: black;
    font-family: 'Permanent Marker', cursive;
    font-size: 4em;
    text-shadow: 1px 1px 3px gray;
}

h2 {
    margin: auto;
    color: black;
    text-align: center; 
    font-family: 'Solway', cursive;
    font-size: 2em;
    text-shadow: 1px 1px 2px black;
}

h3 {
    margin: auto;
    color: black;
    text-align: center; 
    font-family: 'Caveat', cursive;
    font-size: 1.5em;
    text-shadow: 1px 1px 2px black;
}

.bio { 
    margin: auto;
    width: 96%;
    margin-top: 10px;
    background-color: rgb(255, 255, 255, .4);
    padding: 1px 10px 8px 20px;
    box-shadow: 0px 2px gray;
    border-radius: 4px;
}

.bio a {
    color: red;
    text-shadow: 1px 1px 2px black;
}

.bio a:hover {
    color: blue;
    text-shadow: 1px 1px 2px black;
}

.contact {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    color: black;
}

p {
    color: black;
    font-size: 1.2em;
    font-family: 'Solway', serif;
}

.featured, .featuredMobile {
    width: 100%;
    height: 400px;
    margin: auto;
    text-align: center;
}

.featuredMobile {
    display: none;
}

.featuredColL {
    width: 49%;
    float: left;
    text-align: center;
}

.featuredColR {
    width: 49%;
    float: right;
    text-align: center;
}

.featured p {
    height: 68px;
}

.promoVid {
    margin: auto;
    margin-top: 20px;
    text-align: center;
}

.photoRow {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.photoRow img {
    margin: auto;
    margin-top: -1px;
    max-width: 25%;
    text-align: center;
}

.photoRow img:hover {
    max-width: 24.75%;
    border: 1px solid white;
    border-radius: 18px;
}

.columnR {
	width: 49%;
	float: right;
}

.columnL {
	width: 49%;
    float: left;
}

#shows {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

#donate {
    margin-left: 75px;
}

.socials {
  table-layout: fixed;
  width: 78%;
  margin: auto;
  text-align: center;
  margin-top: 10px;
}

.socials td {
  max-width: 25%;
}

.socials img {
  max-height: 60px;
  max-width: 100%;
  transition: 0.5s;
}

.socials img:hover {
  border-bottom: 3px solid white;
  max-height: 66px;
}

.btnCryptoTip {
    padding: 8px;
}

.loader {
    display: inline-flex;
    gap: 10px;
  }
  .loader:before,
  .loader:after {
    content: "";
    height: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
      radial-gradient(farthest-side,#000 95%,#0000) 35% 35%/6px 6px no-repeat
      #fff;
    transform: scaleX(var(--s,1)) rotate(0deg);
    animation: l6 1s infinite linear;
  }
  .loader:after {
    --s: -1;
    animation-delay:-0.1s;
  }
  @keyframes l6 {
    100% {transform:scaleX(var(--s,1)) rotate(360deg);}
  }