@import "https://fonts.googleapis.com/css2?family=Graduate&display=swap";
body {
  background: url("../img/blackBG.jpg") no-repeat #000;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Graduate", serif;
  margin: 0;
  padding: 0; }

header {
  text-align: center;
  margin-top: 60px; }
  header a img {
    display: inline-block;
    padding: 20px; }
  header #logo {
    max-width: 150px; }

#home .homeGrid {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  column-gap: 5px;
  padding: 0 2vw; }
  #home .homeGrid#th .homeCol {
    text-transform: uppercase;
    font-weight: bold;
    background: #641A33;
    color: #fff; }
  #home .homeGrid .homeCol {
    flex: 1;
    width: 25%;
    text-align: center;
    padding: 5px 0;
    border-bottom: 1px solid #9A9F9A; }
    #home .homeGrid .homeCol a.gameList {
      color: #fff !important;
      text-decoration: none;
      display: inline-block;
      padding: 9px 0 0 0; }
      #home .homeGrid .homeCol a.gameList:hover {
        text-decoration: underline; }
    #home .homeGrid .homeCol.loss {
      color: #641A33; }
    #home .homeGrid .homeCol.win {
      color: greenyellow; }
    #home .homeGrid .homeCol.draw {
      color: #0C0C0D; }
    #home .homeGrid .homeCol .ytIcon, #home .homeGrid .homeCol .photoIcon {
      height: 35px;
      filter: brightness(0) saturate(100%) invert(14%) sepia(47%) saturate(3030%) hue-rotate(316deg) brightness(97%) contrast(92%); }
      #home .homeGrid .homeCol .ytIcon:hover, #home .homeGrid .homeCol .photoIcon:hover {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7498%) hue-rotate(158deg) brightness(92%) contrast(119%); }

#youTube {
  text-align: center; }
  #youTube img:hover {
    transform: scale(1.1);
    transition: .3s ease-in-out; }

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

#scheduleFrame {
  width: calc(100vw - 20px);
  height: 220vh;
  border: none;
  background: #fff;
  overflow: scroll;
  padding-bottom: 10vh;
  margin: 0 10px; }

#galleryContainer .grid {
  margin: 0 auto;
  padding: 20px 0; }
  #galleryContainer .grid .row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 5px;
    padding: 0 20px; }
    #galleryContainer .grid .row.home {
      justify-content: center;
      gap: 20px; }
    #galleryContainer .grid .row .col {
      flex-basis: 25%;
      -ms-flex: auto;
      position: relative;
      box-sizing: border-box;
      flex: 0 0 19%;
      display: flex;
      align-items: start;
      margin-bottom: 15px;
      cursor: pointer;
      align-self: center;
      border-radius: 20px;
      border: 3px solid #9A9F9A;
      overflow: hidden; }
      #galleryContainer .grid .row .col:hover {
        border-color: #641A33;
        box-shadow: 0 0 0 2px #000, 0 0 20px 10px #000;
        transition: .5s ease-out; }
        #galleryContainer .grid .row .col:hover img.thumb {
          transform: scale(1.2); }
        #galleryContainer .grid .row .col:hover span.controls {
          display: inline; }
      #galleryContainer .grid .row .col img.thumb {
        width: 100%;
        transform: scale(1.05);
        transition: .5s ease-out; }
      #galleryContainer .grid .row .col span.controls {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 5;
        display: none; }
        #galleryContainer .grid .row .col span.controls img {
          filter: invert(100%);
          cursor: pointer; }

h1 {
  text-align: center;
  font: 40px 'Graduate', serif;
  color: #fff;
  text-shadow: 1px 1px 1px #000; }

h2 {
  text-align: center;
  font: 26px 'Graduate', serif;
  color: #9A9F9A; }

#modal {
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  height: 98vh;
  width: 100vw;
  z-index: -1;
  display: block;
  align-content: center;
  text-align: center;
  top: 0;
  left: 0;
  padding: 2vh 0;
  opacity: 0;
  transition: .5s ease-in-out .05s;
  cursor: zoom-out; }
  #modal img#zoomed {
    max-height: 96vh;
    margin: 0 auto;
    border-radius: 20px;
    border: 3px solid #641A33;
    cursor: default; }
  #modal a.closeX {
    cursor: pointer;
    position: relative;
    display: inline-block; }
    #modal a.closeX:after {
      filter: invert(100);
      height: 24px;
      width: 24px;
      content: url("../img/x-circle.svg");
      position: absolute;
      top: 15px;
      right: 15px; }
  #modal.on {
    z-index: 1000;
    opacity: 1; }
  #modal #zoomFrame {
    display: inline-block;
    position: relative;
    transform: scale(0);
    transition: .5s ease-in; }
    #modal #zoomFrame.on {
      transform: scale(1); }
    #modal #zoomFrame span {
      border: solid #fff;
      border-width: 0 10px 10px 0;
      display: inline-block;
      padding: 10px;
      position: absolute;
      top: 50%;
      cursor: pointer; }
      #modal #zoomFrame span#arrowRight {
        right: -10%;
        transform: rotate(-45deg); }
      #modal #zoomFrame span#arrowLeft {
        left: -10%;
        transform: rotate(135deg); }
    #modal #zoomFrame #slideNumber {
      width: calc(100% - 20px);
      border-radius: 20px;
      background: rgba(100, 26, 51, 0.9);
      color: #fff;
      font-size: 14px;
      text-align: center;
      padding: 10px 0;
      position: absolute;
      bottom: 10px;
      margin: 0 auto;
      left: 10px;
      display: block;
      text-decoration: none; }
      #modal #zoomFrame #slideNumber:after {
        position: absolute;
        filter: invert(100%);
        content: url("../img/download.svg");
        height: 24px;
        width: 24px;
        right: 16px;
        top: 6px; }
      #modal #zoomFrame #slideNumber:hover {
        background: #641a33; }

/* Nav */
nav {
  margin: 0 auto;
  padding: 0;
  position: fixed;
  top: 0px;
  width: 100vw;
  height: 60px;
  z-index: 200;
  background: url(../img/Stateliners-FC-Shield.svg) 10px center no-repeat;
  background-size: 45px; }
  nav.show {
    transition: .3s;
    background: url(../img/Stateliners-FC-Shield.svg) 10px center rgba(0, 0, 0, 0.95) no-repeat;
    background-size: 45px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5); }
  nav:after {
    content: "";
    display: table;
    clear: both; }
  nav ul {
    display: inline-block;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    position: relative; }
    nav ul li {
      margin: 0px;
      display: inline-block;
      float: left; }
      nav ul li ul li:hover {
        background: #0C0C0D; }
      nav ul li:hover > ul {
        display: inherit; }
    nav ul ul {
      display: none;
      position: absolute;
      top: 60px; }
      nav ul ul a {
        font: 14px "arial", san-serif;
        padding: 10px;
        text-align: left;
        background-color: #0C0C0D;
        border: solid #641A33;
        border-width: 0 1px 1px 1px; }
      nav ul ul li {
        width: 250px;
        float: none;
        display: list-item;
        position: relative; }
  nav a {
    display: block;
    padding: 0 20px;
    color: #fff;
    font-size: 20px;
    line-height: 60px;
    text-decoration: none; }
    nav a:hover {
      background-color: #641A33; }
  nav a#homeBtn {
    display: inline-block !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 55px;
    width: 55px;
    padding: 0; }
    nav a#homeBtn:hover {
      background: none; }
    nav a#homeBtn span {
      display: none; }

li > a:after {
  content: ' +'; }
li > a:only-child:after {
  content: ''; }

.toggle {
  display: none; }

[id^=drop] {
  display: none; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: -40px;
  right: 40px;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #641A33;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: scale(0.3);
  -ms-transform: scale(0.3);
  transform: scale(0.3);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.back-to-top:focus {
  color: #fff; }

.back-to-top.show {
  bottom: 40px;
  right: 40px;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.back-to-top.show:hover {
  color: #fff;
  bottom: 50px;
  opacity: 1; }

.arrow {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHN0eWxlPi5zdDB7ZmlsbDojZmZmfTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTMxOS4xIDIxN2MyMC4yIDIwLjIgMTkuOSA1My4yLS42IDczLjdzLTUzLjUgMjAuOC03My43LjZsLTE5MC0xOTBjLTIwLjEtMjAuMi0xOS44LTUzLjIuNy03My43UzEwOSA2LjggMTI5LjEgMjdsMTkwIDE5MHoiLz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzE5LjEgMjkwLjVjMjAuMi0yMC4yIDE5LjktNTMuMi0uNi03My43cy01My41LTIwLjgtNzMuNy0uNmwtMTkwIDE5MGMtMjAuMiAyMC4yLTE5LjkgNTMuMi42IDczLjdzNTMuNSAyMC44IDczLjcuNmwxOTAtMTkweiIvPjwvc3ZnPg==);
  position: absolute;
  width: 12px;
  height: 12px;
  background-size: contain;
  transform: rotate(-90deg);
  top: 30%;
  left: 40%; }

.arrow:nth-child(2) {
  top: 42%; }

@keyframes bounceAlpha {
  0% {
    opacity: 1;
    transform: rotate(-90deg) translateX(0px) scale(1); }
  25% {
    opacity: 0;
    transform: rotate(-90deg) translateX(10px) scale(0.9); }
  26% {
    opacity: 0;
    transform: rotate(-90deg) translateX(-10px) scale(0.9); }
  55% {
    opacity: 1;
    transform: rotate(-90deg) translateX(0px) scale(1); } }
.back-to-top:hover .arrow {
  animation-name: bounceAlpha;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear; }

.back-to-top:hover .arrow:nth-child(2) {
  animation-name: bounceAlpha;
  animation-duration: 1.4s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear; }

@media only screen and (max-width: 575px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    line-height: 40px; }

  .back-to-top.show {
    bottom: 10px;
    right: 10px; }

  .back-to-top.show:hover {
    bottom: 10px; }

  .arrow {
    top: 27%;
    left: 37%; } }
@media (max-width: 768px) {
  nav {
    margin: 0; }
    nav ul li {
      display: block;
      width: 100%;
      border-bottom: 1px solid #9A9F9A;
      background-color: #641A33; }
      nav ul li ul li .toggle {
        background-color: #0C0C0D;
        padding: 20px;
        font-size: 18px; }
      nav ul li:hover > ul {
        display: none; }
    nav ul ul {
      float: none;
      position: static;
      color: #fff; }
      nav ul ul .toggle {
        padding: 0 40px; }
      nav ul ul a {
        padding: 0 40px;
        background-color: #0C0C0D;
        padding: 20px;
        font-size: 18px; }
      nav ul ul li {
        display: block;
        width: 100%; }
    nav a:hover {
      background-color: #0C0C0D; }

  .toggle {
    display: block;
    background-color: #0C0C0D;
    padding: 0 20px;
    color: #fff;
    font-size: 20px;
    line-height: 60px;
    text-decoration: none;
    border: solid #9A9F9A;
    border-width: 1px 0; }
    .toggle + a {
      display: none; }
    .toggle:hover {
      background-color: #0C0C0D; }

  .menu {
    display: none; }

  [id^=drop]:checked + ul {
    display: block; }

  li > .toggle {
    background-color: #641A33; }
    li > .toggle:hover {
      background-color: #641A33;
      background-color: #7a1f3d; } }
@media (max-width: 330px) {
  nav ul li {
    display: block;
    width: 94%; } }
@media (max-width: 1333px) {
  #galleryContainer .col {
    flex-basis: 33.33%;
    flex: 0 0 25%; } }
@media (max-width: 1073px) {
  #galleryContainer .grid .row {
    display: block;
    padding: 0 15px; }
    #galleryContainer .grid .row .col {
      display: block !important;
      margin-bottom: 15px; }
      #galleryContainer .grid .row .col span.controls {
        display: block !important;
        position: absolute;
        bottom: 10px !important;
        right: 10px !important;
        top: auto;
        left: auto;
        z-index: 5; }
        #galleryContainer .grid .row .col span.controls img.zoom {
          display: none !important; }
        #galleryContainer .grid .row .col span.controls a {
          display: none;
          padding: 20px;
          border-radius: 20px;
          background: rgba(100, 26, 51, 0.8); }
          #galleryContainer .grid .row .col span.controls a img {
            width: 48px; }
    #galleryContainer .grid .row img.thumb {
      max-width: none !important;
      width: 100%; }

  #modal {
    display: none; } }
