:root {
  --igniteRed: #a81313;
  --igniteGold: #fec40e;
  --igniteWhite: #f4f1ee;
  --igniteBlack: #0f010e;
  --igniteTan: #c1a591;
}

* {
  box-sizing: border-box;
}
p {
  font-size: 20px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-image: linear-gradient(#000000e3, #0f010e07);
  padding: 16px 32px;
}

/****hamburger****/

.hamburger {
  display: block;
  position: relative;
  z-index: 1;
  user-select: none;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background-color: var(--igniteWhite);
  border-radius: 6px;
  z-index: 1;
  transform-origin: 0 0;
  transition: 0.4s;
}

.hamburger:hover span:nth-child(2) {
  transform: translateX(10px);
  background-color: var(--igniteRed);
}

.hamburger.is-active span:nth-child(1) {
  transform: translate(0px, -2px) rotate(45deg);
}

.hamburger.is-active span:nth-child(3) {
  transform: translate(-3px, 3px) rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(15px);
}

.hamburger.is-active:hover span {
  background-color: var(--igniteRed);
}

/****mobile****/

.mobile-nav {
  display: block;
  top: 0;
  left: 100%;
  width: 100%;
  min-height: 100vh;
  z-index: 98;
  background: #0f010e;
  padding-top: 120px;
  position: fixed;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.mobile-nav.is-active {
  left: 0%;
}

.mobile-nav a {
  border-radius: 10px 10px 10px 10px;
  display: block;
  text-align: center;
  width: 100%;
  margin: 0 auto 16px;
  max-width: 200px;
  padding: 12px 16px;
  background-color: rgb(34, 34, 34);
  color: var(--igniteWhite);
  text-decoration: none;
}

.mobile-nav a:hover {
  background-color: rgb(179, 41, 16);
}

/****menu****/

.smalllogo {
  width: 4em;
  background-color: transparent;
}

.menu {
  display: none;
  justify-content: flex-end;
  margin: 0 -16px;
}

.menu a {
  color: antiquewhite;
  margin: 0 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
  padding: 8px 16px;
  border-radius: 99px;
}

.menu a.is-active,
.menu a:hover {
  background-color: var(--igniteRed);
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .menu {
    display: block;
  }

  .mobile-nav {
    display: none;
  }
}

/*****body*****/
body {
  background: var(--igniteBlack);
  color: var(--igniteWhite);
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: large;
  overflow-x: hidden;
  text-align: center;
}

section {
  font-size: x-large;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0%;
  width: 100%;
  overflow: hidden;
}

h2 {
  color: var(--igniteWhite);
}

/**BODY**/

.title {
  padding-top: 7em;
  font-size: 1.4em;
  background-image: url(/images/header_background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  padding-bottom: 10em;
}

/**TICKER**/

.hmove {
  display: flex;
  animation: tickerh linear 15s infinite;
  padding-left: 0 !important;
  font-size: 40px;
  white-space: nowrap;
}

.hitem {
  flex-shrink: 0;
  width: 100%;
  text-align: center;
}

.hwrap {
  overflow: hidden;
}

.hmove:hover {
  animation-play-state: paused;
}

@keyframes tickerh {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/** second ticker**/

section .scroll {
  width: 100%;
  display: flex;
}

section .scroll div {
  color: var(--igniteWhite);
  font-size: 4.5em;
  background: black !important;
  white-space: nowrap;
  font-weight: 900;
  text-transform: uppercase;
  animation: animate 40s linear infinite;
  animation-delay: -40s;
}

section .scroll div:nth-child(2) {
  animation: animate2 40s linear infinite;
  animation-delay: -20s;
}

@keyframes animate {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes animate2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

section .scroll div span {
  -webkit-text-stroke: 2px var(--igniteRed);
  color: transparent;
}

@media (max-width: 768px) {
  section .scroll div {
    color: var(--igniteWhite);
    font-size: 2em;
  }

  .title {
    padding-bottom: 8em;
    background-attachment: scroll;
  }
}

/** ROSTER**/
.champion {
  position: relative;
  margin-top: 4%;
  margin-bottom: 4%;
}
.champion img {
  border-radius: 40px;
}
.champion::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background: linear-gradient(to left, #00000000 50%, #000000),
    linear-gradient(to top, #00000000 50%, #000000); */
}
.meet-the-team {
  background-image: linear-gradient(rgb(88, 8, 8), #0f010e);
  margin-left: 10%;
  margin-right: 10%;
  border-radius: 14px 14px 14px 14px;
  padding-bottom: 140px;
  padding-top: 25px;
  margin-top: 14px;
  flex-wrap: wrap !important;
}

.solid {
  color: var(--igniteWhite);
  font-weight: bolder;
}

.Teamcontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-top: 20px;
  flex-wrap: wrap;
}

.our-team {
  background: #c1a59125;
  text-align: center;
  overflow: hidden;
  position: relative;
  margin: 1em;
  padding: 30px 0;
  width: 301px;
  border-radius: 9px;
}

.our-team .pic {
  display: inline-block;
  width: 130px;
  height: 130px;
  margin-bottom: 0px;
  z-index: 1;
  position: relative;
}

.our-team .pic::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background: var(--igniteBlack);
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.2;
  transform: scale(3);
  transition: all 0.2s linear;
}

.our-team:hover .pic::before {
  height: 100%;
}

.our-team .pic::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--igniteRed);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.our-team .pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.5s ease 0s;
}

.our-team:hover .pic img {
  box-shadow: 0 0 0 14px var(--igniteBlack);
  transform: scale(1.1);
}

.our-team .team-content {
  margin-bottom: 30px;
}

.our-team .title {
  font-size: 22px;
  font-weight: 700;
  color: var(--igniteBlack);
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.our-team .post {
  display: block;
  font-size: 18px;
  color: #dfd2a9;
}

.our-team .social {
  width: 100%;
  padding: 0;
  margin: 0;
  background: var(--igniteBlack);
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
}

.our-team:hover .social {
  bottom: 0;
}

.our-team .social li {
  display: inline-block;
}

.our-team .social li a {
  text-decoration: none;
  display: block;
  padding: 10px;
  font-size: 17px;
  color: var(--igniteWhite);
  transition: all 0.3s ease 0s;
}

.our-team .social li a:hover {
  color: #ec1c2f;
  background: var(--igniteBlack);
}

@media (max-width: 760px) {
  .Teamcontainer {
    flex-direction: column;
  }

  .our-team {
    width: 80%;
    margin-top: 30px;
  }
}

/** END OF ROSTER**/

/**SECOND TICKER**/

section .scroll.purple {
  width: 100%;
  display: flex;
}

section .scroll.purple div {
  color: #444444;
  font-size: 5em;
  background: rgba(0, 0, 0, 0.404) !important;
  white-space: nowrap;
  font-weight: 900;
  text-transform: uppercase;
  animation: animate 80s linear infinite;
  animation-delay: -80s;
}

section .scroll.purple div:nth-child(2) {
  animation: animate2 80s linear infinite;
  animation-delay: -40s;
}

@keyframes animate {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes animate2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

section .scroll.purple div span {
  -webkit-text-stroke: 2px #6441a5;
  color: transparent;
}

/** END OF SECOND TICKER**/

/**TWITCH**/

.twitch {
  max-width: 80em;
  margin: auto auto 70px;
}

.embed {
  border: solid;
  border-style: outset;
  border-width: 20px;
  margin-top: 2%;
  margin-left: 19%;
  margin-right: 19%;
  border-color: #6441a5;
}

@media (max-width: 1200px) {
  .embed {
    margin-left: 10%;
    margin-right: 10%;
  }
}

/** END OF TWITCH**/

/**DISCORD **/

.discord {
  background-image: url(/images/background.PNG);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  padding-top: 30px;
  padding-bottom: 20px;
}

.words h1 {
  font-size: 50px;
}

/**BUTTON**/

.button_container {
  width: 176px;
  margin: 0 auto;
  margin-top: 30px;
  padding-top: 40px;
}

.button_su {
  overflow: hidden;
  position: relative;
  display: inline-block;
  border-radius: 3px;
  margin-bottom: 30px;
}

.su_button_circle {
  background-color: var(--igniteGold);
  border-radius: 1000px;
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin-left: 0px;
  margin-top: 0px;
  pointer-events: none;
}

.button_su_inner {
  display: inline-block;
  background: var(--igniteGold);
  color: var(--igniteBlack);
  font-size: 16px;
  font-weight: 600;
  width: 132px;
  text-align: center;
  border-radius: 3px;
  transition: 400ms;
  text-decoration: none;
  padding: 22px;
  z-index: 100000;
}

.button_text_container {
  position: relative;
  z-index: 2;
}

.explode-circle {
  animation: explode 0.5s forwards;
}

.desplode-circle {
  animation: desplode 0.5s forwards;
}

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: var(--igniteRed);
  }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: var(--igniteRed);
  }
}

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: var(--igniteRed);
  }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: var(--igniteRed);
  }
}

/**END OF BUTTON**/
/**END OF DISCORD**/

/**THIRD TICKER**/

section .scroll.orange {
  width: 100%;
  display: flex;
  margin-top: 90px;
}

section .scroll.orange div {
  color: #444444;
  font-size: 5em;
  background: rgba(0, 0, 0, 0.404) !important;
  white-space: nowrap;
  font-weight: 900;
  text-transform: uppercase;
  animation: animate 80s linear infinite;
  animation-delay: -80s;
}

section .scroll.orange div:nth-child(2) {
  animation: animate2 80s linear infinite;
  animation-delay: -40s;
}

@keyframes animate {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes animate2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

section .scroll.orange div span {
  -webkit-text-stroke: 2px var(--igniteGold);
  color: transparent;
}

/** END OF THIRD TICKER**/

/**SPARK**/

.allofspark {
  margin: 4% auto;
  max-width: 80em;
}
.allofspark .product-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.allofspark .product-group > div {
  padding: 3rem;
  flex-basis: 22rem;
  flex-grow: 1;
}
@media (max-width: 1300px) {
  .allofspark .product-group > div {
    padding: 1rem;
  }
}

/**END OF SPARK**/

/**FOURTH TICKER**/

section .scroll.pink {
  width: 100%;
  display: flex;
  margin-top: 30px;
}

section .scroll.pink div {
  color: #444444;
  font-size: 5em;
  background: rgba(0, 0, 0, 0.404) !important;
  white-space: nowrap;
  font-weight: 900;
  text-transform: uppercase;
  animation: animate 80s linear infinite;
  animation-delay: -80s;
}

section .scroll.pink div:nth-child(2) {
  animation: animate2 80s linear infinite;
  animation-delay: -40s;
}

@keyframes animate {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes animate2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

section .scroll.pink div span {
  -webkit-text-stroke: 2px darkorange;
  color: transparent;
}

@media (max-width: 768px) {
  section .scroll.pink div {
    color: #444444;
    font-size: 3em;
  }
}

/**END OF FOURTH TICKER**/

/**MERCH**/

.buywords {
  margin-left: 20%;
  margin-right: 20%;
  margin-bottom: 1%;
}
.merchphoto {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.hoodie,
.crewneck,
.shirt {
  padding-left: 1%;
  padding-top: 2%;
  padding-right: 1%;
}

.buybutton {
  margin-top: 3%;
}

.border {
  border-color: darkorange;
  border-width: 15px;
  border-style: outset;
}

@media (max-width: 900px) {
  .buywords {
    margin-left: 6%;
    margin-right: 6%;
  }

  .buywords h3 {
    font-size: 1em;
    font-weight: 500;
  }
}
@media (max-width: 600px) {
  .merchImg {
    width: 260px;
  }
}
/** END OF MERCH**/

/**SOCIAL**/
.social {
  margin-bottom: 50px;
}

.youtube:hover {
  font-size: 3rem;
}

.social h2 {
  margin-top: -25px;
  margin-bottom: 45px;
}

.top {
  display: flex;
  justify-content: center;
  flex-wrap: wrap !important;
}

.bottom_social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap !important;
}

.social_design {
  font-size: 3rem !important;
  margin-bottom: 14%;
  padding-left: 30px;
  padding-right: 30px;
  font-family: inherit;
  padding-bottom: 4px;
  padding-top: 4px;
  font-weight: 600;
  background-color: transparent;
  border: none;
  transition: 0.3s ease;
  min-width: 400px;
  border-radius: 7px;
}
.social_design:hover {
  text-shadow: 0 4px 4px var(--igniteBlack);
}
.instagram {
  padding-right: 20px;
  padding-left: 20px;
}

.twitch_button {
  padding-right: 20px;
  padding-left: 20px;
}

.text {
  text-decoration: none !important;
}

.twitch_color {
  background-image: url(/images/twitch\ color.PNG);
}

.discord_color {
  background-image: url(/images/discord_color.PNG);
}

.instagram_color {
  background-image: url(/images/instagram_color.PNG);
}

.twitter_color {
  background-image: url(/images/twitter_color.PNG);
}

.tiktok_color {
  background-image: url(/images/tiktok_color.PNG);
  background: co;
}

.youtube_color {
  background-image: url(/images/youtube_color.PNG);
  background: co;
}

.social_design a {
  color: var(--igniteWhite) !important;
}
.eachLink {
  height: 120px;
  margin: 0;
  padding: 0;
}
/**END OF SOCIAL**/

/**FOOTER**/

footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rightside {
  text-align: end;
  padding-right: 13%;
  font-size: 1rem;
}

.leftside {
  padding-left: 13%;
  color: var(--igniteRed);
  font-weight: 500;
  font-size: 1.5rem;
}

.leftside a {
  font-size: 1.2rem !important;
  padding-left: 20px;
  color: var(--igniteWhite);
}

@media (max-width: 900px) {
  .leftside {
    padding-left: 4%;
  }

  .rightside {
    padding-right: 4%;
  }
}

/**END OF FOOTER**/
/***********END OF INDEX PAGE************/

/***********TERMS PAGE************/

.terms {
  padding: 1em;
  margin: 5em auto 2em;
  max-width: 60em;
  text-align: justify;
}

.terms a {
  color: var(--igniteGold);
}
.terms a:visited {
  color: var(--igniteRed);
}

/***********END OF TERMS PAGE************/

/***********FOUNDER'S PAGE************/
.teamAbout {
  max-width: 1200px;
  margin: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1200px;
}
.eachFounder,
.allMods {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-width: 1400px;
  margin: auto;
}
.teamCard img {
  width: 180px;
}
.teamCard {
  margin: 9px;
  background-color: rgb(0, 0, 0);
  padding: 20px;
  border-radius: 20px;
  border-color: var(--igniteWhite);
  border: 4px;
  border-style: solid;
  margin: 15px;
}
.teamCard a {
  color: var(--ignitewhite);
  transition: 0.3s ease-in-out;
}
.teamCard a:hover {
  color: var(--igniteGold);
}
.h2Larger {
  font-size: 2.2em;
}

/***********END OF FOUNDER'S PAGE************/

/***********ROSTER PAGE************/

.roster_title {
  -webkit-text-stroke: 2px #fec40e !important;
}

.tilt_roster {
  margin-top: 50px;
}

.team {
  max-width: 90%;
  border: var(--igniteWhite);
  border-radius: 20px;
  border-width: 10px;
  border-style: outset;
}
.about {
  padding-top: 14px;
  padding-bottom: 60px;
}
.roster-content .above {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  justify-content: center;
}
.roster-content .above h1 {
  font-size: 5.5em;
  font-weight: 1000;
  margin-top: 3px;
  margin-bottom: 10px;
}
.roster-content .above h2 {
  font-size: 2.2em;
  font-weight: 1000;
  color: black;
}
.roster-content .above h2.red {
  color: var(--igniteRed);
}
.roster-content .above img {
  max-width: 90%;
  width: 20em;
}

.kung {
  background-image: url(/images/people/backgrounds/KUNGGBACKGROUND.PNG);
}

.text-left {
  padding-right: 10%;
}

.text-right {
  padding-left: 10%;
}

.img-right {
  padding-left: 30px;
  margin-right: 10%;
  margin-top: 4em;
}

.img-left {
  padding-right: 30px;
  margin-left: 10%;
  margin-top: 4em;
}

.above {
  padding-top: 200px;
  padding-bottom: 200px;
  flex-wrap: wrap;
}

.lineslong {
  background: whitesmoke;
  width: 550px;
  height: 6px;
  margin-right: 2%;
  margin-left: 2%;
}

.lineslonger {
  background: whitesmoke;
  width: 920px;
  height: 6px;
  margin-right: 2%;
  margin-left: 2%;
}

.socialroster a {
  text-decoration: none !important;
  padding: 10px;
  color: var(--igniteWhite);
  transition: all 0.3s ease 0s;
  display: inline;
}

.socialroster a:hover {
  color: var(--igniteGold);
}

.embedyoutube {
  border: 20px outset rgb(19, 18, 18);
}

.jay {
  background-image: url(/images/jaywalkerbackground.PNG);
}

.game {
  background-image: url(/images/people/backgrounds/gamebackground1.PNG);
}

.ryann {
  background-image: url(/images/ryannbackground.PNG);
}

.andy {
  background-image: url(/images/people/backgrounds/andybackground.PNG);
}
@media screen and (max-width: 1100px) {
  .champion img {
    width: 600px;
  }
  .meet-the-team h2 {
    font-size: 1em;
  }
}
@media screen and (max-width: 700px) {
  .roster-content .above h1 {
    font-size: 2em;
  }
  .roster-content .above h2 {
    font-size: 1.4em;
  }
  .roster-content .above .embedyoutube {
    transform: scale(0.6);
  }
  .img-left {
    transform: scale(0.7);
    margin-top: 0;
  }
  .img-right {
    transform: scale(0.7);
    margin-top: 0;
  }
  .above {
    padding-bottom: 90px;
    padding-top: 90px;
  }
  .champion img {
    width: 300px;
  }
  .meet-the-team h2 {
    font-size: 1em;
  }
}

@media screen and (max-width: 1202px) {
  .text-right {
    padding-right: 0;
    padding-left: 0;
  }
  .img-left {
    margin-left: 0;
    padding-right: 0;
  }
  .text-left {
    padding-right: 0;
    padding-left: 0;
  }
  .img-right {
    margin-right: 0;
    padding-left: 0;
  }
  .andy {
    background-image: none;
    background-color: #a00808;
  }
  .game {
    background-image: none;
    background-color: #a00808;
  }
  .ryann {
    background-color: black;
    background-image: none;
  }
}

@media screen and (max-width: 1560px) {
  .jay {
    background-color: black;
    background-image: none;
  }
  .jay .text-right {
    padding-left: 0;
  }
  .jay .img-left {
    margin-left: 0;
  }
  .kung {
    background-image: none;
    background-color: #a00808;
  }
}

/*********** END OF ROSTER PAGE************/

.outline-header {
  font-size: 6rem;
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}

.outline-header.red {
  -webkit-text-stroke: 2px var(--igniteRed);
}

.outline-header.blue {
  -webkit-text-stroke: 2px #1ccdec;
}

.outline-header.yellow {
  -webkit-text-stroke: 2px #fec40e;
}

@media screen and (max-width: 700px) {
  .outline-header {
    font-size: 3.1rem;
    -webkit-text-stroke-width: 1px;
  }
  .top {
    scale: 0.8;
  }
  .bottom_social {
    scale: 0.8;
    margin-top: -60px;
  }
  h2 {
    font-size: 20px;
  }
  h1 {
    font-size: 2.8;
  }
  p {
    font-size: 17px;
  }
  .meet-the-team {
    margin-left: 4%;
    margin-right: 4%;
  }
}
/* test branch */
