/* This is simply a re-structuring of the homepage and homepage styles
because the previouse version of this was a disaster. You like your code
readable, right?*/

html {
  box-sizing: border-box
  
}

body {
  background-color: hsl(0, 0%, 28%);
  /*line-height: 120%;*/

}

div, section, hgroup {
  unicode-bidi: isolate;
}

main {
  margin-left: 4px;
  box-sizing: border-box;
  padding: 5px;
  float: left;
}

#teamSTATS {
  color: gold;
  width: 90%; overflow: hidden;
  margin: auto; box-shadow: 1px 2px 15px 7px rgba(0, 0, 0, 0.50);
  /*border: 2px solid purple;*/
  grid-area: topmost;
}


@media screen and (max-width: 600px) {
  #hp-stats {font-size: 11pt;}
}

.statHEADER {
  font-size: 30pt; text-align: center;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  background-color: black; background-color: black;
  margin-bottom: 0;
  padding-top: 10px; padding-bottom: 10px;
  border-color: transparent;
}

#hp-stats {
  display: flex; flex-direction: row;
  align-content: center; align-items: center;
  text-align: center;
  /*border: 2px solid blue; */
  flex-wrap: nowrap; font-size: 12pt;
  background-image: linear-gradient(to bottom, black, gray);
}

#hp-stats div {
  margin: 0px 20px 10px 20px;
  width: 13%;
  height: 70px;
  padding: 0;
  font-size: 1rem;
}



#hp-stats div:last-child {
  font-size: calc(100% - 5px);
}

#hp-stats label {
  color: yellow;
  font-family: Verdana, Geneva, Tahoma, sans-serif; font-weight: bold;
  font-style: italic; font-size: 30pt;
  text-decoration-line: underline; 
}


#hp-stats p {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

/*.grid-container {
  display: grid; width: 100%;
  grid-template-areas:
    "topmost topmost topmost"
    "side1 middle side2";
  padding: 10px; overflow: hidden;
  grid-template-columns: 1fr 3.5fr 1fr;
}*/

#homepage-main {
  background-color: grey;
  color: white;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}

#main-flex {
  display: flex; flex-direction: row;
}

#sideContent1 {
  background-color: goldenrod; border-radius: 10px 0px 0px 0px;
  padding: 5px;
  font-family: 'Agency FB';
}

#sideContent1 h3 {
    font-family: inherit;
}

#sideContent2 {
  border: 2px solid white; background-image: url(../images/graphics/whitegrid.jpg); border-radius: 0px 10px 0px 0px;
  font-family: Georgia, 'Times New Roman', Times, serif; padding: 5px;
}

#sideContent2 h3 {
  border: 2px solid yellow; 
  background-color: white; 
}

dd {
    font-size: 1.5rem;
}

/*this here class is set to past event through main page javascript*/
.strike-out {
    text-decoration: line-through;
}

/*extra homepage section*/
.homePage-extra-photos  {
  border: 4px inset rgb(207, 191, 16);
  background-color: rgb(103, 89, 89);
  width: 80%; padding: 10px;
  overflow: hidden; display: block;
} 

.homePage-extra-photos img {
  height: 100px;
}

.homePage-extra-photos > div {
  unicode-bidi:normal;
  border: 3px outset white; background-color: white;
  padding: 10px; margin-right: 5px;
  display: inline-block;
}

article {
  background-color: white;

}



@media screen and (max-width: 600px) {
  #hp-stats label {
    font-size: 12pt;
  }

  #hp-stats div {
    margin: auto;
  }

  #main-flex {
    flex-direction: column;
  }

  #hp-stats label {
    font-size: 9pt;
  }

   #hp-stats p {
    font-size: 9pt;
  }
}


#yellowarrow {
  color: yellow; width: 150px; transform: rotate(90deg);
  display: inline; position: relative; left: 200px; margin-top: 40px;
} 

.marquee {
  display: flex; flex-direction: column;
  height: 200vh;
  visibility: visible; background-color: rgba(100, 100, 100, 0.90) !important; background-color: transparent;
  border: 5px double gold; overflow: hidden;
}

.marquee-link {
  animation-duration: 30s; 
	animation-iteration-count: infinite;
	animation-name: marquee-anim;
	animation-timing-function: linear;
  height: 300px; width: 200px; margin-bottom: 25px;
}

 .marquee-image {
 width: 100%; 
 image-rendering: optimizeQuality;
}

.marquee:hover .marquee-link {
  animation-play-state: paused;
}

@keyframes marquee-anim {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-2000px);
  }
}

.scroll-sponsor-img:first-child {
  margin-top: 20px;
}


#nothin {
  background-image: url(sjfsd), url(sfsf);
  background-position: left top, right bottom;
  background-repeat: no-repeat;

  background-size: 34px 56px, contain;
}

#article-header {
  line-height: 2.5;
  border: 2px solid white;
  float: left; padding: 5px;
}

@media screen and (max-width: 700px) {
  #article-header {display: none;}
}


.image-gallery {
  margin: auto;
  width: 80%;
  background: rgba(0, 0, 0, 0.50);
}