


.bottomtext {
  //background-color: black;
  border: 15;
  color: white;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
  padding-left: 24px;
  padding-right: 24px;
  font-size:13px;
  font-family: cushing;
  text-align:center;
  line-height: 1.7;
  letter-spacing: 1px;
  opacity: .8;
  box-sizing: border-box;
}
@media screen and (max-width: 700px) {
  .bottomtext {
    //background-color: white;
    border: 10;
    color: white;
    margin-top: 0px;
    margin-bottom: 0px;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    font-size:8px;
    font-family: cushing;
    text-align:center;
    line-height: 1.7;
    letter-spacing: 1px;
    opacity: .8;
  }
}
.bigbottomtext {
  //background-color: black;
  border: 0;
  padding: 0;
  padding-top: 1px;
  color: #ffffff;
  font-size:60px;
  font-family: microgramma;
  text-align:center;
  letter-spacing: 5px;
  //text-shadow: .5px .5px white;
  opacity: .8;

}


@media screen and (max-width: 700px) {
.bigbottomtext {
    //background-color: black;
    border: 0;
    padding: 0;
    padding-top: 1px;
    color: #ffffff;
    font-size: 35px;
    font-family: microgramma;
    letter-spacing: 5px;
    text-align:center;
    letter-spacing: 10px;
    opacity: .8;
  }
}

.pagefourtext {
  //background-color: black;
  border: 30;
  color: white;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  padding-top: 0px;
  font-size:9px;
  font-family: cushing;
  text-align:center;
  border-bottom:10px;
  //text-shadow: 1px 1px white;
}
@media screen and (max-width: 700px) {
  .pagethreetext {
    //background-color: black;
    border: 30;
    color: #983273;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
    margin-right: 40px;
    font-size:9px;
    font-family: cushing;
    text-align:center;
    border-bottom:10px;
    overflow: hidden;
    letter-spacing: 1px;
  }
}

a:link {
  color: #ffffff; 

#infoOverlay a:visited {
  color: #afafaf; 
}

form {}
.formposition {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center-align the items horizontally */
  justify-content: flex-start; /* Align items to the start of the flex container vertically */
}
input, textarea {
  outline: 1px solid rgb(189, 189, 189);
  background-color: #232323;
  opacity:0.7;
  border: 3px solid rgba(0, 0, 0, 0.2);
  font-family: cushing, Arial;
  border-radius: px;
  color: white;
  width: 188px;
}
input[type=button],
input[type=submit],
input[type=reset] {
  background-color: #983273;
  border: none;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  margin: 2px 2px;
  cursor: pointer;
}
input[type=text]:focus, textarea:focus {
  border: 3px solid #ff9494;
}
input[type=text], textarea {
  padding: 8px 20px;
  margin: 1px 0;
  box-sizing: border-box;
}
text[type=text]:focus {
  border: 3px solid #ff9494;
}

.instagram {
  cursor:pointer;
  width: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  background-image:url("https://www.exptv.org/css/iglogo3.png");
  background-repeat:no-repeat;
  background-color:rgba( 00,
  00,
  00,
  oo);
  background-size: 50px 50px;
  opacity: 0.8;
}
.patreon-form {
  cursor:pointer;
  width: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  background-image:url("https://www.exptv.org/css/Patreon_Mark_White.png");
  background-repeat:no-repeat;
  background-color:rgba( 00,
  00,
  00,
  oo);
  background-size: 50px 50px;
  opacity: 0.8;
}

.logo-link {
  display: inline-block;
  width: 50px; /* Match the width of your logos */
  height: 50px; /* Match the height of your logos */
  text-align: center; /* Center the logos if necessary */
}

.interactive {
  /* Your styles here (if needed) */
}

/* Button click animation */
.button-clicked {
  animation: clickAnimation 0.5s forwards;
}

@keyframes clickAnimation {
  from {background-color: #d5d5d5;}
  to {background-color: #0056b3;}
}

/* Fade in/out animation */
.fade-in {
  animation: fadeIn 1s forwards;
}

.fade-out {
  animation: fadeOut 1s forwards;
}

