@import url("https://use.typekit.net/peq1fqe.css");

body {
    margin: 0;
    padding: 100px 20px 20px 20px;
    background: #000;
    color: #fff;
    fill: #fff;
    font-family: 'bebas-neue-pro', sans-serif;
}

.page-title {
    margin-left: 20px;
    font-size: 3em;
    font-weight: bold;
    text-transform: uppercase;
}

.page-title > a {
    text-decoration: none;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    color: #fff;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
  }
  
  .menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .menu > li {
    margin: 0 1rem;
  }
  
  .menu > li > a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5em;
    color: #fff;
  }

  .nav-icon {
      width: 16px;
      height: 16px;
  }
  
  .menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #menu-toggle {
    display: none;
  }
  
  .menu-button,
  .menu-button::before,
  .menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
  }
  
  .menu-button::before {
    content: "";
    margin-top: -8px;
  }
  
  .menu-button::after {
    content: "";
    margin-top: 8px;
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(45deg);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-45deg);
  }

.content-title {
    margin: 10px 0;
    width: 100%;
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.content-subtitle {
    margin: 10px 0;
    width: 100%;
    font-size: 1.25em;
    font-weight: bold;
    text-align: center;
}

.main-player {
    width: 100%;
    text-align: center;
    align-content: center;
}

.twitch-container {
    width: 80%;
    margin: 0 auto;
}

.main-player-frame {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9 !important;
}

.main-chat-frame {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    min-height: 400px;
}

.player-sub-text {
    margin-top: 10px;
    font-size: 1.5em;
}

footer {
    margin-top: 20px;
    text-align: center;
}

a {
    color: #fff;
}

.link-container {
    text-align: center;
    margin: 0 10px;
}

.link-container-bottom {
    margin-top: 80px;
}

.link-container a {
    color: #fff;
    text-decoration: none;
}

.link-icon {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.link-icon-image {
    display: inline-block;
    vertical-align: middle;
    width: 120px;
    height: 120px;
}

    .link-icon-image.small {
        width: 80px;
        height: 80px;
    }

.link-text {
    display: inline-block;
    padding: 0 5px;
    vertical-align: middle;
    font-size: 2.25em;
    width: 400px;
}

.schedule-frame {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 600px;
}

.store-frame {
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    min-height: 600px;
    background-color: #000;
    color: #fff;
}



@media (max-width: 750px) {
    body {
        padding: 60px 0 10px 0;
        padding-left: 0;
        padding-right: 0;
    }

    header {
        height: 40px;
    }

    .page-title {
        margin-left: 10px;
        font-size: 2em;
    }

    .menu-button-container {
      display: flex;
      margin-right: 10px;
    }
  
    .menu {
      position: absolute;
      top: 0;
      margin-top: 40px;
      left: 0;
      flex-direction: column;
      width: 100%;
      justify-content: center;
      align-content: center;
      align-items: center;
    }
  
  
    #menu-toggle ~ .menu li {
      height: 0;
      margin: 0;
      padding: 0;
      border: 0;
      align-items: center;
      transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
  
    #menu-toggle ~ .menu li a {
      display: none;
    }
  
    #menu-toggle:checked ~ .menu li {
      height: 3em;
      padding: 0.5em;
      transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
  
    #menu-toggle:checked ~ .menu li a {
      display: initial;
    }
  
    .menu > li {
      display: flex;
      justify-content: center;
      margin: 0;
      padding: 0.5em 0;
      width: 100%;
      color: white;
      background-color: #000000EE;
    }

    .main-player-frame {
        width: 100%;
    }
    
    .link-container-bottom {
        margin-top: 40px;
    }

    .link-icon-image {
        width: 80px;
        height: 80px;
    }

    .link-icon-image.small {
        width: 45px;
        height: 45px;
    }

    .link-text {
        font-size: 1.5em;
        width: 240px;
    }
}

@media (max-width: 400px) {
    #menu-toggle:checked ~ .menu li {
        height: 2em;
    }

    .menu > li > a {
        font-size: 1.25em;
    }

    .content-title {
        font-size: 1.5em;
    }

    .player-sub-text {
        font-size: 1.25em;
    }

    footer {
        font-size: 0.75em;
    }
    
    .link-container-bottom {
        margin-top: 20px;
    }

    .link-icon-image {
        width: 45px;
        height: 45px;
    }

    .link-icon-image.small {
        width: 30px;
        height: 30px;
    }

    .link-text {
        font-size: 1.25em;
        width: 200px;
    }
}