@import url("https://fonts.googleapis.com/css2?family=Jua&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap");
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #472D3C;
  background-color: #78A142;
  background-position: top;
}
@media screen and (max-width: 1216px) {
  body {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 600px) {
  body {
    font-size: 5vw;
  }
}

a {
  color: #5C7D32;
  text-decoration: none;
}

p {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1216px) {
  p {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 600px) {
  p {
    margin-top: 4vw;
    margin-bottom: 4vw;
  }
}

h1, h2, h3 {
  font-family: "Jua", sans-serif;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1216px) {
  h1, h2, h3 {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 600px) {
  h1, h2, h3 {
    margin-top: 4vw;
    margin-bottom: 4vw;
  }
}

h1 {
  font-size: 3rem;
}
@media screen and (max-width: 1216px) {
  h1 {
    font-size: 5vw;
  }
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 10vw;
  }
}

h2 {
  font-size: 2.5rem;
}
@media screen and (max-width: 1216px) {
  h2 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 8vw;
  }
}

h3 {
  font-size: 2rem;
}
@media screen and (max-width: 1216px) {
  h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 600px) {
  h3 {
    font-size: 6vw;
  }
}

hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: #472D3C;
  background-color: #472D3C;
  border: 0.25rem solid #472D3C;
  border-radius: 2048px;
}
@media screen and (max-width: 1216px) {
  hr {
    margin-top: 2vw;
    margin-bottom: 2vw;
    border: 0.5vw solid #472D3C;
  }
}
@media screen and (max-width: 600px) {
  hr {
    margin-top: 4vw;
    margin-bottom: 4vw;
    border: 1vw solid #472D3C;
  }
}

img {
  max-width: 100%;
  max-height: 100%;
}

.container {
  width: 1152px;
  text-align: center;
  margin: auto;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 1216px) {
  .container {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .container {
    width: 100%;
  }
}

.content {
  background-color: white;
  padding: 3rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 1216px) {
  .content {
    padding: 5vw;
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
  }
}
@media screen and (max-width: 600px) {
  .content {
    padding: 6vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
  }
}

.element {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1216px) {
  .element {
    margin-top: 2.5vw;
    margin-bottom: 2.5vw;
  }
}
@media screen and (max-width: 600px) {
  .element {
    margin-top: 3vw;
    margin-bottom: 3vw;
  }
}

.spacer {
  padding-top: 3rem;
}
@media screen and (max-width: 1216px) {
  .spacer {
    padding-top: 5vw;
  }
}
@media screen and (max-width: 600px) {
  .spacer {
    padding-top: 6vw;
  }
}

.spacer-half {
  padding-top: 1.5rem;
}
@media screen and (max-width: 1216px) {
  .spacer-half {
    padding-top: 2.5vw;
  }
}
@media screen and (max-width: 600px) {
  .spacer-half {
    padding-top: 3vw;
  }
}

.subtext {
  color: #a05b53;
}

.small-text {
  font-size: 0.75rem;
}
@media screen and (max-width: 1216px) {
  .small-text {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 600px) {
  .small-text {
    font-size: 2.5vw;
  }
}

header {
  width: 100%;
  height: 96px;
  background-color: #6D933C;
  color: white;
  position: relative;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 1216px) {
  header {
    height: 9vw;
  }
}
@media screen and (max-width: 600px) {
  header {
    height: 18vw;
  }
}

header a {
  color: white;
  font-family: "Jua", sans-serif;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media screen and (max-width: 1216px) {
  .header-content {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 600px) {
  .header-content {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

@media screen and (max-width: 600px) {
  nav {
    display: none;
  }
}

nav a {
  margin-left: 1rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 1216px) {
  nav a {
    margin-left: 1vw;
    font-size: 2vw;
  }
}
@media screen and (max-width: 600px) {
  nav a {
    margin-left: 0;
    font-size: 2.5vw;
  }
}

footer {
  width: 100%;
  background-color: #6D933C;
  color: white;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 1rem;
}
@media screen and (max-width: 1216px) {
  footer {
    padding-top: 5vw;
    padding-bottom: 5vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 600px) {
  footer {
    padding-top: 6vw;
    padding-bottom: 6vw;
    font-size: 3vw;
  }
}

.footer-content {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media screen and (max-width: 1216px) {
  .footer-content {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 600px) {
  .footer-content {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

.footer-socials img {
  width: 3rem;
  margin: 0.75rem;
}
@media screen and (max-width: 1216px) {
  .footer-socials img {
    width: 4vw;
    margin: 1vw;
  }
}
@media screen and (max-width: 600px) {
  .footer-socials img {
    width: 8vw;
    margin: 2vw;
  }
}

#lightbox {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 0;
  height: 0;
  transition: all 0s;
  transform: scale(1.1);
  opacity: 0;
}

#lightbox.active {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.75);
  transition: all 0.25s ease-in-out, width 0s linear, height 0s linear;
  transform: scale(1);
  opacity: 1;
  width: 100%;
  height: 100%;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 0.5rem;
}
@media screen and (max-width: 1216px) {
  #lightbox img {
    border-radius: 1vw;
  }
}
@media screen and (max-width: 600px) {
  #lightbox img {
    border-radius: 1.5vw;
  }
}

.lightbox-image {
  cursor: pointer;
}

.expand {
  transform: scale(1);
  transition: all 0.05s ease-in;
}
.expand:hover {
  transform: scale(1.05);
}

.box-shadow {
  filter: drop-shadow(0 2.5px 2.5px rgba(0, 0, 0, 0.25));
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 192px;
  background-color: #6D933C;
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 95%;
  left: 50%;
  margin-left: -96px;
  transition: all 0.2s;
}
@media screen and (max-width: 1216px) {
  .tooltip .tooltip-text {
    width: 0;
  }
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1216px) {
  .tooltip:hover .tooltip-text {
    visibility: hidden;
    opacity: 0;
  }
}

.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #6D933C transparent;
}

.videowrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
}

.videowrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-alert {
  background-color: #B2363C;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media screen and (max-width: 1216px) {
  .news-alert {
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 600px) {
  .news-alert {
    padding-top: 3vw;
    padding-bottom: 3vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

.news-alert a {
  color: white;
}

.news-alert img {
  height: 1.5rem;
}
@media screen and (max-width: 1216px) {
  .news-alert img {
    height: 2.5vw;
  }
}
@media screen and (max-width: 600px) {
  .news-alert img {
    height: 5vw;
  }
}

.news-alert-text {
  margin-left: 3rem;
  margin-right: 3rem;
  width: 100%;
  font-weight: bold;
}
@media screen and (max-width: 1216px) {
  .news-alert-text {
    margin-left: 5vw;
    margin-right: 5vw;
  }
}
@media screen and (max-width: 600px) {
  .news-alert-text {
    margin-left: 6vw;
    margin-right: 6vw;
  }
}

.award-group {
  color: white;
  background-color: black;
  padding: 3rem;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
@media screen and (max-width: 1216px) {
  .award-group {
    padding: 5vw;
  }
}
@media screen and (max-width: 600px) {
  .award-group {
    padding: 6vw;
  }
}
.award-group img {
  width: 33.333333333333%;
}
@media screen and (max-width: 600px) {
  .award-group img {
    width: 50%;
  }
}

.banner {
  width: 100%;
  background-size: cover;
  background-position: center;
  text-align: left;
  position: relative;
  color: white;
  aspect-ratio: 16/9;
}

@media screen and (max-width: 600px) {
  .banner-scaling {
    aspect-ratio: 3/4;
  }
}

.banner-tint {
  background-image: url(/assets/resources/fade-sideways.png);
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.9;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .banner-tint {
    background-image: url(/assets/resources/fade.png);
  }
}

.banner-overlay {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.banner-overlay-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  color: white;
  margin-left: 3rem;
}
@media screen and (max-width: 1216px) {
  .banner-overlay-text {
    margin-left: 5vw;
  }
}
@media screen and (max-width: 600px) {
  .banner-overlay-text {
    margin-left: 15%;
    margin-right: 15%;
    width: 70%;
    text-align: center;
    top: unset;
    bottom: 0;
    transform: translateY(-25%);
  }
}

.banner-overlay-text h1 {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.125;
  font-size: 2.5rem;
}
@media screen and (max-width: 1216px) {
  .banner-overlay-text h1 {
    margin-top: 1.5vw;
    margin-bottom: 2vw;
    font-size: 4vw;
  }
}
@media screen and (max-width: 600px) {
  .banner-overlay-text h1 {
    margin-top: 3vw;
    margin-bottom: 4vw;
    font-size: 7.5vw;
  }
}

.banner-overlay-text p {
  color: #C9DD6E;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1;
}
@media screen and (max-width: 1216px) {
  .banner-overlay-text p {
    margin-top: 1.5vw;
    margin-bottom: 1.5vw;
  }
}
@media screen and (max-width: 600px) {
  .banner-overlay-text p {
    margin-top: 3vw;
    margin-bottom: 3vw;
  }
}

.button-small-black {
  cursor: pointer;
  color: #472D3C;
  border: solid 0.25rem #472D3C !important;
  border-radius: 99999px;
  width: fit-content;
  font-size: 1rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  padding: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1216px) {
  .button-small-black {
    border: solid 0.4375vw #472D3C !important;
    font-size: 1.75vw;
    padding: 1.75vw;
    padding-top: 1.3125vw;
    padding-bottom: 1.3125vw;
    margin-top: 1.75vw;
    margin-bottom: 1.75vw;
  }
}
@media screen and (max-width: 600px) {
  .button-small-black {
    border: solid 0.875vw #472D3C !important;
    font-size: 3.5vw;
    padding: 3.5vw;
    padding-top: 2.625vw;
    padding-bottom: 2.625vw;
    margin-top: 3.5vw;
    margin-bottom: 3.5vw;
  }
}

.button-small-black:hover {
  background-color: #472D3C;
  color: white;
}

.button-big-green {
  cursor: pointer;
  display: inline-block;
  border-radius: 99999px;
  color: white;
  background-color: #6D933C;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  padding: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1216px) {
  .button-big-green {
    font-size: 2.5vw;
    padding: 2.5vw;
    margin-top: 2.5vw;
    margin-bottom: 2.5vw;
  }
}
@media screen and (max-width: 600px) {
  .button-big-green {
    font-size: 5vw;
    padding: 5vw;
    margin-top: 5vw;
    margin-bottom: 5vw;
  }
}

.button-big-green:hover {
  background-color: #78A142;
}

.button-big-social {
  display: flex;
  width: fit-content;
  border-radius: 99999px;
  color: white;
  background-color: #6D933C;
  padding: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1216px) {
  .button-big-social {
    font-size: 2.5vw;
    padding: 2.5vw;
    margin-top: 2.5vw;
    margin-bottom: 2.5vw;
  }
}
@media screen and (max-width: 600px) {
  .button-big-social {
    font-size: 5vw;
    padding: 5vw;
    margin-top: 5vw;
    margin-bottom: 5vw;
  }
}

.button-big-social:hover {
  background-color: black !important;
}

.button-big-social img {
  height: 2.5rem;
}
@media screen and (max-width: 1216px) {
  .button-big-social img {
    height: 4.125vw;
  }
}
@media screen and (max-width: 600px) {
  .button-big-social img {
    height: 6.75vw;
  }
}

.button-big-social-wide {
  width: auto !important;
}

.button-big-social-wide img {
  margin: auto;
}

.button-big-call {
  background-position: center;
  background-position: top;
  animation: animatedBackground 32s linear infinite;
  width: 100%;
  border-radius: 99999px;
  color: white;
  text-align: center;
  aspect-ratio: 4/1;
}

.button-big-call-left, .button-big-call-left-flipped, .button-big-call-right, .button-big-call-right-flipped {
  top: 5%;
  height: 90%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-big-call-left {
  width: 30%;
  left: 10%;
}

.button-big-call-left-flipped {
  width: 30%;
  right: 10%;
}

.button-big-call-right {
  width: 50%;
  right: 10%;
}

.button-big-call-right-flipped {
  width: 50%;
  left: 10%;
}

.button-big-call h1 {
  font-size: 2.5rem;
}
@media screen and (max-width: 1216px) {
  .button-big-call h1 {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 600px) {
  .button-big-call h1 {
    font-size: 5vw;
  }
}

.collapsible {
  background-color: #6D933C;
  color: white;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  padding: 2rem;
  border-top-left-radius: 2.75rem;
  border-top-right-radius: 2.75rem;
  border-bottom-left-radius: 2.75rem;
  border-bottom-right-radius: 2.75rem;
}
@media screen and (max-width: 1216px) {
  .collapsible {
    font-size: 2.5vw;
    margin-top: 2.5vw;
    padding: 3vw;
    border-top-left-radius: 4.25vw;
    border-top-right-radius: 4.25vw;
    border-bottom-left-radius: 4.25vw;
    border-bottom-right-radius: 4.25vw;
  }
}
@media screen and (max-width: 600px) {
  .collapsible {
    font-size: 5vw;
    margin-top: 5vw;
    padding: 6vw;
    border-top-left-radius: 6vw;
    border-top-right-radius: 6vw;
    border-bottom-left-radius: 6vw;
    border-bottom-right-radius: 6vw;
  }
}

.collapsible-active, .collapsible:hover {
  background-color: #E5E5E5;
  color: #6D933C;
}

.collapsible-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.collapsible-content {
  padding: 2rem;
  padding-top: 0;
  padding-bottom: 0;
  max-height: 0;
  overflow: hidden;
  background-color: #f1f1f1;
  border-bottom-left-radius: 2.75rem;
  border-bottom-right-radius: 2.75rem;
}
@media screen and (max-width: 1216px) {
  .collapsible-content {
    padding: 3vw;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-left-radius: 4.25vw;
    border-bottom-right-radius: 4.25vw;
  }
}
@media screen and (max-width: 600px) {
  .collapsible-content {
    padding: 6vw;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-left-radius: 6vw;
    border-bottom-right-radius: 6vw;
  }
}

.game-thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(min(10px, 100%), 1fr));
  gap: 2rem;
}
@media screen and (max-width: 1216px) {
  .game-thumbnail-grid {
    gap: 3vw;
  }
}
@media screen and (max-width: 600px) {
  .game-thumbnail-grid {
    grid-template-columns: repeat(2, minmax(min(10px, 100%), 1fr));
    gap: 4vw;
  }
}

.game-thumbnail {
  border-radius: 1rem;
  max-width: 100%;
}
@media screen and (max-width: 1216px) {
  .game-thumbnail {
    border-radius: 1.5vw;
  }
}
@media screen and (max-width: 600px) {
  .game-thumbnail {
    border-radius: 2vw;
  }
}

.game-thumbnail-more {
  border-radius: 1rem;
  max-width: 100%;
  height: 100%;
  background-color: #6D933C;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (max-width: 1216px) {
  .game-thumbnail-more {
    border-radius: 1.5vw;
    font-size: 4.5vw;
    padding-left: 1.5vw;
    padding-right: 1.5vw;
  }
}
@media screen and (max-width: 600px) {
  .game-thumbnail-more {
    border-radius: 2vw;
    font-size: 7vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }
}

.game-thumbnail-more p {
  font-weight: bold;
}

.game-detailed-display {
  padding: 3rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1216px) {
  .game-detailed-display {
    padding: 5vw;
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
  }
}
@media screen and (max-width: 600px) {
  .game-detailed-display {
    padding: 6vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    flex-direction: column !important;
  }
}

.game-detailed-display-border-top, .game-detailed-display-border-bottom {
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1216px) {
  .game-detailed-display-border-top, .game-detailed-display-border-bottom {
    height: 3vw;
    margin-top: 5vw;
    margin-bottom: 5vw;
  }
}
@media screen and (max-width: 600px) {
  .game-detailed-display-border-top, .game-detailed-display-border-bottom {
    height: 6vw;
    margin-top: 6vw;
    margin-bottom: 6vw;
  }
}

.game-detailed-display-border-top {
  background-image: url("/assets/resources/curved-border-top.png");
  margin-top: 0 !important;
}

.game-detailed-display-border-bottom {
  background-image: url("/assets/resources/curved-border-bottom.png");
  margin-bottom: 0 !important;
}

.game-detailed-display-video {
  width: 60%;
}
@media screen and (max-width: 600px) {
  .game-detailed-display-video {
    width: 100%;
  }
}

.game-detailed-display-information {
  overflow: visible;
  text-align: left;
  width: 35%;
}
@media screen and (max-width: 600px) {
  .game-detailed-display-information {
    width: 100%;
    margin-top: 7.5vw;
  }
}

.game-detailed-display-information-box {
  background-color: white;
  overflow: auto;
  padding: 1.5rem;
  border-radius: 2rem;
}
@media screen and (max-width: 1216px) {
  .game-detailed-display-information-box {
    padding: 2.5vw;
    border-radius: 3vw;
  }
}
@media screen and (max-width: 600px) {
  .game-detailed-display-information-box {
    padding: 6vw;
    border-radius: 4vw;
  }
}

.game-detailed-display-information .thumbnail-subtext {
  font-weight: bold;
  margin-top: 1rem;
}
@media screen and (max-width: 1216px) {
  .game-detailed-display-information .thumbnail-subtext {
    margin-top: 1.75vw;
  }
}
@media screen and (max-width: 600px) {
  .game-detailed-display-information .thumbnail-subtext {
    margin-top: 3.5vw;
  }
}

.game-detailed-display-information .thumbnail-text {
  margin-bottom: 1rem;
}
@media screen and (max-width: 1216px) {
  .game-detailed-display-information .thumbnail-text {
    margin-bottom: 1.75vw;
  }
}
@media screen and (max-width: 600px) {
  .game-detailed-display-information .thumbnail-text {
    margin-bottom: 3.5vw;
  }
}

.hamburger-menu {
  background-position: top;
  color: white;
  background-color: white;
  transition: 0s;
  position: absolute;
  z-index: 10;
  width: 100%;
  top: -100%;
  visibility: hidden;
}
.hamburger-menu.hamburger-menu-open {
  top: 18vw;
}
@media screen and (max-width: 600px) {
  .hamburger-menu {
    visibility: visible;
    transition: 0.375s cubic-bezier(0.39, 0.58, 0.57, 1);
  }
}

.hamburger-menu-content {
  background-color: #78A142;
  padding-top: 5vw;
  padding-bottom: 5vw;
}

.hamburger-menu-close-button {
  display: flex;
  height: 10vw;
  margin-top: 1vw;
  margin-bottom: 1vw;
  margin-left: auto;
  margin-right: auto;
}

.hamburger-menu-content a {
  color: white;
  background-color: #6D933C;
  font-family: "Jua", sans-serif;
  font-size: 5vw;
  text-align: center;
  display: block;
  padding: 2.5vw;
  padding-left: 5vw;
  padding-right: 5vw;
  margin: 10vw;
  margin-top: 5vw;
  margin-bottom: 5vw;
  border-radius: 99999px;
}

.hamburger-menu-content a:hover {
  color: #6D933C;
  background-color: #E5E5E5;
}

.hamburger-menu-button {
  height: 18vw;
  width: 18vw;
  display: none;
  position: absolute;
  text-align: center;
  line-height: 18vw;
  font-size: 7vw;
  font-weight: bold;
  right: 6vw;
  top: 0;
}
@media screen and (max-width: 600px) {
  .hamburger-menu-button {
    display: block;
  }
}

.link-box {
  text-align: center;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media screen and (max-width: 1216px) {
  .link-box {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
}
@media screen and (max-width: 600px) {
  .link-box {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}

.link-box a {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 1216px) {
  .link-box a {
    margin-left: 2.5vw;
    margin-right: 2.5vw;
  }
}
@media screen and (max-width: 600px) {
  .link-box a {
    margin-left: 3vw;
    margin-right: 3vw;
  }
}

.news-thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(min(10px, 100%), 1fr));
  gap: 2rem;
}
@media screen and (max-width: 1216px) {
  .news-thumbnail-grid {
    gap: 3vw;
  }
}
@media screen and (max-width: 600px) {
  .news-thumbnail-grid {
    grid-template-columns: repeat(1, minmax(min(10px, 100%), 1fr));
    gap: 4vw;
  }
}

.news-thumbnail-dynamic-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(min(10px, 100%), 1fr));
  gap: 2rem;
}
@media screen and (max-width: 1216px) {
  .news-thumbnail-dynamic-grid {
    gap: 3vw;
  }
}
@media screen and (max-width: 600px) {
  .news-thumbnail-dynamic-grid {
    gap: 4vw;
  }
}

.news-thumbnail {
  border-radius: 1rem;
}
@media screen and (max-width: 1216px) {
  .news-thumbnail {
    border-radius: 1vw;
  }
}
@media screen and (max-width: 600px) {
  .news-thumbnail {
    border-radius: 2vw;
    float: none;
    width: 100%;
  }
}

.news-thumbnail-dynamic {
  float: left;
  width: 40%;
}
@media screen and (max-width: 600px) {
  .news-thumbnail-dynamic {
    float: none;
    width: 100%;
  }
}

.news-thumbnail-information-dynamic {
  float: right;
  width: 57.5%;
}
@media screen and (max-width: 600px) {
  .news-thumbnail-information-dynamic {
    float: none;
    width: 100%;
  }
}

.news-person-name {
  font-size: 1.75rem;
  font-family: "Jua", sans-serif;
  color: #472D3C;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 1216px) {
  .news-person-name {
    font-size: 3.5vw;
    margin-left: 1vw;
    margin-right: 1vw;
  }
}
@media screen and (max-width: 600px) {
  .news-person-name {
    font-size: 7vw;
    margin-left: 2vw;
    margin-right: 2vw;
  }
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(min(10px, 100%), 1fr));
  gap: 2rem;
}
@media screen and (max-width: 1216px) {
  .partner-grid {
    border-radius: 3vw;
  }
}
@media screen and (max-width: 600px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(min(10px, 100%), 1fr));
    gap: 4vw;
  }
}

.platform-box {
  text-align: center;
  color: white;
  background-color: black;
  font-weight: bold;
  padding: 3rem;
}
@media screen and (max-width: 1216px) {
  .platform-box {
    padding: 5vw;
  }
}
@media screen and (max-width: 600px) {
  .platform-box {
    padding: 6vw;
  }
}

.platform-box p {
  margin-top: 0;
}

.platform-box img {
  width: 3.75rem;
  margin: 0.25rem;
}
@media screen and (max-width: 1216px) {
  .platform-box img {
    width: 6vw;
    margin: 0.25vw;
  }
}
@media screen and (max-width: 600px) {
  .platform-box img {
    width: 12.5vw;
    margin: 2vw;
  }
}

.person-thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(min(10px, 100%), 1fr));
  gap: 2rem;
}
@media screen and (max-width: 1216px) {
  .person-thumbnail-grid {
    grid-template-columns: repeat(4, minmax(min(10px, 100%), 1fr));
    gap: 3vw;
  }
}
@media screen and (max-width: 600px) {
  .person-thumbnail-grid {
    grid-template-columns: repeat(2, minmax(min(10px, 100%), 1fr));
    gap: 4vw;
  }
}

.person-avatar {
  border-radius: 50%;
}

.person-avatar-news {
  width: 4rem;
}
@media screen and (max-width: 1216px) {
  .person-avatar-news {
    width: 6vw;
  }
}
@media screen and (max-width: 600px) {
  .person-avatar-news {
    width: 12vw;
  }
}

.press-quotes {
  text-align: center;
}

.press-quotes img {
  height: 4rem;
}
@media screen and (max-width: 1216px) {
  .press-quotes img {
    height: 6vw;
  }
}
@media screen and (max-width: 600px) {
  .press-quotes img {
    height: 12vw;
  }
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(min(10px, 100%), 1fr));
  gap: 2rem;
}
@media screen and (max-width: 1216px) {
  .screenshot-grid {
    gap: 3vw;
  }
}
@media screen and (max-width: 600px) {
  .screenshot-grid {
    grid-template-columns: repeat(1, minmax(min(10px, 100%), 1fr));
    gap: 4vw;
  }
}

.screenshot {
  border-radius: 0.5rem;
}
@media screen and (max-width: 1216px) {
  .screenshot {
    border-radius: 1vw;
  }
}
@media screen and (max-width: 600px) {
  .screenshot {
    border-radius: 2vw;
  }
}

.merch-thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(min(10px, 100%), 1fr));
  gap: 2rem;
}
@media screen and (max-width: 1216px) {
  .merch-thumbnail-grid {
    gap: 3vw;
  }
}
@media screen and (max-width: 600px) {
  .merch-thumbnail-grid {
    grid-template-columns: repeat(2, minmax(min(10px, 100%), 1fr));
    gap: 4vw;
  }
}

.merch-thumbnail {
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  aspect-ratio: 1/1;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1216px) {
  .merch-thumbnail {
    border-radius: 1.5vw;
    margin-bottom: 1vw;
  }
}
@media screen and (max-width: 600px) {
  .merch-thumbnail {
    border-radius: 2vw;
    margin-bottom: 2vw;
  }
}

.merch-thumbnail-unavailable {
  background-color: #E5E5E5;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
  position: absolute;
  border-radius: inherit;
}

.merch-thumbnail-tag {
  width: 25%;
  height: 25%;
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
@media screen and (max-width: 1216px) {
  .merch-thumbnail-tag {
    border-top-right-radius: 1.5vw;
    border-bottom-left-radius: 1.5vw;
  }
}
@media screen and (max-width: 600px) {
  .merch-thumbnail-tag {
    border-top-right-radius: 2vw;
    border-bottom-left-radius: 2vw;
  }
}

.merch-thumbnail-tag img {
  width: 75%;
  height: 75%;
}

.merch-thumbnail-limited {
  bottom: 0;
  position: absolute;
  z-index: 1;
  background-color: #6D933C;
  font-size: 1rem;
  font-weight: bold;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
@media screen and (max-width: 1216px) {
  .merch-thumbnail-limited {
    font-size: 1.25vw;
    padding-top: 0.75vw;
    padding-bottom: 0.75vw;
    padding-left: 1vw;
    padding-right: 1vw;
    border-top-right-radius: 1.5vw;
    border-bottom-left-radius: 1.5vw;
  }
}
@media screen and (max-width: 600px) {
  .merch-thumbnail-limited {
    font-size: 3vw;
    padding-top: 1.25vw;
    padding-bottom: 1.25vw;
    padding-left: 2vw;
    padding-right: 2vw;
    border-top-right-radius: 2vw;
    border-bottom-left-radius: 2vw;
  }
}

.merch-image-expanded {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1rem;
}
@media screen and (max-width: 1216px) {
  .merch-image-expanded {
    border-radius: 1.25vw;
  }
}
@media screen and (max-width: 600px) {
  .merch-image-expanded {
    border-radius: 2vw;
  }
}

.merch-image {
  width: 100%;
  cursor: pointer;
  border-radius: 1rem;
}
@media screen and (max-width: 1216px) {
  .merch-image {
    border-radius: 1.25vw;
  }
}
@media screen and (max-width: 600px) {
  .merch-image {
    border-radius: 2vw;
  }
}

.merch-image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(min(10px, 100%), 1fr));
  gap: 1.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
@media screen and (max-width: 1216px) {
  .merch-image-grid {
    gap: 1.5vw;
    padding-left: 0.75vw;
    padding-right: 0.75vw;
  }
}
@media screen and (max-width: 600px) {
  .merch-image-grid {
    gap: 4vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

.merch-display-images {
  width: 40%;
  float: left;
}
@media screen and (max-width: 600px) {
  .merch-display-images {
    width: 100%;
    float: none;
  }
}

.merch-display-information {
  width: 55%;
  float: right;
}
@media screen and (max-width: 600px) {
  .merch-display-information {
    width: 100%;
    float: none;
  }
}

.merch-display-information p {
  margin-top: 0;
}

.merch-display-information .subtext {
  margin-top: 1.5rem;
}
@media screen and (max-width: 1216px) {
  .merch-display-information .subtext {
    margin-top: 2.5vw;
  }
}
@media screen and (max-width: 600px) {
  .merch-display-information .subtext {
    margin-top: 3vw;
  }
}

.merch-peep-button-root {
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (max-width: 1216px) {
  .merch-peep-button-root {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 600px) {
  .merch-peep-button-root {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

.thumbnail-header, .thumbnail-text, .thumbnail-subtext {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1216px) {
  .thumbnail-header, .thumbnail-text, .thumbnail-subtext {
    margin-bottom: 1vw;
  }
}
@media screen and (max-width: 600px) {
  .thumbnail-header, .thumbnail-text, .thumbnail-subtext {
    margin-bottom: 2vw;
  }
}

.thumbnail-text, .thumbnail-subtext {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}
@media screen and (max-width: 1216px) {
  .thumbnail-text, .thumbnail-subtext {
    font-size: 1.75vw;
  }
}
@media screen and (max-width: 600px) {
  .thumbnail-text, .thumbnail-subtext {
    font-size: 3.5vw;
  }
}

.thumbnail-header {
  color: #472D3C;
  font-family: "Jua", sans-serif;
  font-size: 1.5rem;
}
@media screen and (max-width: 1216px) {
  .thumbnail-header {
    font-size: 2.25vw;
  }
}
@media screen and (max-width: 600px) {
  .thumbnail-header {
    font-size: 4.5vw;
  }
}

.thumbnail-subtext {
  color: #a05b53;
}

.thumbnail-text {
  color: #5C7D32;
}

@keyframes snoozyAnimatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1024px -1024px;
  }
}
@keyframes turnipAnimatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1024px -1024px;
  }
}
@keyframes turnip2AnimatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1024px 1024px;
  }
}
.welcome-content {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 1216px) {
  .welcome-content {
    width: 75%;
  }
}
@media screen and (max-width: 600px) {
  .welcome-content {
    width: 100%;
    margin: 0;
  }
}

::-moz-selection {
  color: white;
  background: #6D933C;
}

::selection {
  color: white;
  background: #6D933C;
}
