.fa {
    padding: 20px;
    text-align: center;
    text-decoration: none;
}
body, html {
  height: 100%;
  margin: 0px;
  padding: 0px;
}
body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "header"
    "main"
    "footer";
    background-color: whitesmoke;
}
nav {
  position: fixed;
  width: 100%;
	background-color: #393939;
  opacity: 0.9;
  overflow: hidden;
  z-index: 2;
}
@media screen and (min-width: 750px) {
  nav {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-areas:
  		"links logo social";
  }
}
#links {
  grid-area: links;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  display: none;
}
#logo {
  grid-area: logo;
  justify-content: center;
  align-items: stretch;
  display: flex;
}
.logo {
  max-height: 1.5em;
  font-size: 1.25em;
}
#social {
  grid-area: social;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  display: none;
}
nav a {
  font-family: 'Dancing Script';
	text-decoration: none;
	font-size: 1.5em;
	color: whitesmoke;
}
@media screen and (min-width: 750px) {
  nav a {
    font-size: 2.5em;
  }
  #links, #logo, #social {
    display: flex;
  }
  #links a {
    padding: 20px;
    padding-top: 20px;
  }
  #logo a {
    text-align: center;
  }
  #social a {
    font-size: 2em;
    padding-top: 30px;
  }
}
.link:hover {
	background-color: whitesmoke;
	color: #2F2F2F;
	text-decoration: none;
}
.active {
  color: #aaa;
}
.icon {
  display: block;
  text-align: right;
  font-size: 2.5em;
  padding-right: 20px;
  width: 50%;
}
@media screen and (min-width: 750px) {
  .icon {
      display: none;
  }
}
.topNav.responsive {
  height: 100%;
}
.topNav.responsive #links, .topNav.responsive #social {
  display: flex;
}
.topNav.responsive #links {
  flex-direction: column;
  text-align: center;
}
.topNav.responsive #links a {
  padding: 20px;
}
.topNav.responsive a {
  float: none;
  font-size: 2.5em;
}
.topNav.responsive #social a {
  font-size: 2em;
}
.topNav.responsive #logo .logoWrap {
  max-height: 2em;
  font-size: 1.5em;
}
#aboveHeader {
  background-color: #393939;
  width: 100%;
  height: 54px;
}
@media screen and (min-width: 750px) {
  #aboveHeader {
      height: 88px;
  }
}
header {
  grid-area: header;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: whitesmoke;
  text-align: center;
}
header video {
    right: 0;
    bottom: 0;
    width: 100%;
    display: none;
}
@media screen and (min-width: 750px) {
  header video {
      display: block;
  }
}
header h1 {
  margin-top: 200px;
  font-size: 6em;
  font-family: 'Dancing Script';
  color: #2F2F2F;
}
.words {
  position: absolute;
  top: 10vh;
  left: 20%;
  right: 20%;
  width: 60%;
}
.non_index_img {
  position: static;
  width: 100%;
  max-height: 100vh;
}
#homeImage {
  position: static;
  /*width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../photos/Homepage2.jpeg"); */
  margin-bottom: 20px;
  display: flex;
}
@media screen and (min-width: 750px) {
  #homeImage {
      display: none;
  }
  .words {
    display: none;
  }
}
main {
  display: grid;
  grid-template-columns: 1fr 8fr 1fr;
  grid-row-gap: 4em;
  grid-template-areas:
    ". info ."
    "section section section"
    ". video .";
  background-color: whitesmoke;
  color: #393939;
  padding-bottom: 1em;
}
.main {
  font-family: 'Adamina';
  text-align: center;
}
@media screen and (min-width: 1200px) {
  main {
    grid-template-columns: 2fr 1fr 8fr 1fr 2fr;
    grid-template-areas:
      ". . info . ."
      "section section section section section"
      ". . video . .";
  }
  .main {
    grid-template-columns: 3fr 1fr 8fr 1fr 3fr;
  }
}
.info {
  grid-area: info;
  text-align: center;
  font-family: 'Adamina';
}
.info div {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.info div a, .info div iframe {
  box-shadow: 0 16px 32px 0 rgba(0,0,0,0.8);
}
.info div h1, .info div p {
  margin: 20px;
}
.info div div {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 750px) {
  .info {
    font-size: 1.5em;
  }
  .info div {
    flex-wrap: nowrap;
  }
}
.info h1 {
  font-size: 2em;
  font-family: 'Dancing Script';
  }
.section {
  grid-area: section;
  background-image: url("../photos/Seth_Charleston_Music_Drawing.jpg");
  height: 200px;
  background-size: 100%;
  background-position: center;
}
@media screen and (min-width: 750px) {
  .section {
    height: 500px;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
}
.spotify {
  flex-direction: column-reverse;
}
.video {
  margin-bottom: 0;
  flex-direction: column-reverse;
}
.video iframe {
  width: 100%;
  height: 230px;
  box-shadow: 0 16px 32px 0 rgba(0,0,0,0.8);
}
.video h1 {
  margin-top: 0;
}
@media screen and (min-width: 750px) {
  .spotify {
    flex-direction: row;
    padding-top: 60px;
  }
  .video {
    padding-top: 60px;
    flex-direction: row;
  }
  .video iframe {
    height: 400px;
  }
}
footer {
	width: 100%;
	padding-top: 2em;
	background-color: #393939;
	color: whitesmoke;
	display: flex;
	font-size: 1em;
	justify-content: center;
}
@media screen and (min-width: 750px) {
  footer {
    justify-content: space-around;
  }
}
@media screen and (min-width: 1200px) {
  footer {
    justify-content: center;
  }
}

@media screen and (min-width: 750px) {
  footer section {
    width: 40%;
    max-width: 400px;
  }
}
.title {
	text-align: center;
	font-size: 3em;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#mc_embed_signup {
	grid-area: form;
	padding: 0px 5%;
}
#imbeingrealstupid {
  white-space: nowrap;
  text-align: center;
  font-family: 'Dancing Script';
  margin-bottom: 20px;
  font-size: 0.6em;
}
.mc-field-group {
  text-align: left;
  font-size: 0.3em;
  font-family: 'Adamina';
}
.mc-field-group input {
	width: 90%;
	height: 20px;
	margin: 10px;
  padding: 2px;
	background-color: whitesmoke;
	color: #393939;
	border-radius: 5px;
	border: none;
}

#mc-embedded-subscribe {
	width: 120px;
	height: 30px;
  font-family: 'Adamina';
	background-color: whitesmoke;
	color: #393939;
	border-radius: 5px;
	border: none;
}
#mc-embedded-subscribe:hover {
  opacity: 0.4;
}

.clear {
  height: 0px;
}

.social {
  text-align: center;
  font-size: 0.75em;
}
.social .fa {
	color: #B6B6B6;
  padding: 10px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}
.social a:hover {
    opacity: 0.7;
}
.footer {
  text-align: center;
  font-family: 'Adamina';
  text-decoration: none;
  font-size: 0.3em;
  white-space: nowrap;
  margin: 20px;
}
.footer a {
  text-decoration: none;
  color: whitesmoke;
}
.footerImg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footerImg img {
  display: none;
}
@media screen and (min-width: 750px) {
  .footerImg img {
    display: block;
    margin-bottom: 20px;
    max-width: 100%;
    box-shadow: 0 16px 32px 0 rgba(0,0,0,0.8);
  }
}
.spacer {
  text-align: center;
  font-size: 16vw;
  font-family: 'Dancing Script';
  color: #393939;
  margin-bottom: 40px;
  margin-top: 30px;
}
.fader {
  width: 100%;
  height: 40px;
  background-image: linear-gradient(rgba(0,0,0,0), whitesmoke);
  align-self: flex-end;
}
.album {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media screen and (min-width: 1200px) {
  .album {
    grid-column-start: 2;
    grid-column-end: 5;
  }
}
.album iframe {
  width: 100%;
  /* height: 300px; */
  box-shadow: 0 16px 32px 0 rgba(0,0,0,0.8);
}
.events {
  /* border-style: solid; */
  border-width: 1px;
  margin-bottom: 50px;
  box-shadow: 0 16px 32px 0 rgba(0,0,0,0.8);
  grid-column-start: 2;
  grid-column-end: 3;
  border-radius: 12px;
  background-color: whitesmoke;
}
@media screen and (min-width: 1200px) {
  .events {
    grid-column-start: 2;
    grid-column-end: 5;
  }
}
.ticket-button {
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #393939;
  border-radius: 5px;
  border: none;
  padding: 10px 20px;
  margin: 10px;
}
.ticket-button a {
  color: whitesmoke;
  text-decoration: none;
}
.ticket-button:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}