* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Exo", sans-serif;
  color: #ffffff;
  line-height: 1;
  background-color: #343e47;
}

.home-landing {
  position: relative;
  display: flex;
  z-index: 99;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  align-items: center;
  transition: 0.25s ease;
  background: url("game-background.b10b812c.jpg") no-repeat center center/cover;
}

.home-landing--is-hidden {
  display: none;
}

.home-landing__container {
  display: grid;
  z-index: 105;
  gap: 1.875rem;
  margin: 2rem auto;
  text-align: center;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

@media (min-width: 990px) {
  .home-landing__container {
    margin: 4rem auto;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.home-landing__image {
  grid-column: 2/12;
}

@media (min-width: 990px) {
  .home-landing__image {
    grid-column: span 6;
  }
}

.home-landing__image img {
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.home-landing__intro {
  max-width: 100%;
  grid-column: 2/12;
}

@media (min-width: 990px) {
  .home-landing__intro {
    max-width: 520px;
    align-self: center;
    grid-column: 8/12;
    justify-self: center;
  }
}

.home-landing__title {
  display: inline-block;
  font-weight: 900;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  font-size: calc(2.025rem + 9.3vw);
  text-transform: uppercase;
  border-bottom: 4px solid #ffffff;
}

@media (min-width: 1200px) {
  .home-landing__title {
    font-size: 9rem;
  }
}

.home-landing__subtitle {
  display: block;
  font-size: calc(1.725rem + 5.7vw);
}

@media (min-width: 1200px) {
  .home-landing__subtitle {
    font-size: 6rem;
  }
}

.home-landing__description {
  margin-bottom: 2rem;
  line-height: 1.5rem;
  font-size: 1.125rem;
}

.home-game {
  position: relative;
  display: flex;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: url("game-background.b10b812c.jpg") no-repeat center center/cover;
}

.home-game--hidden {
  display: none;
}

.home-game__instructions {
  display: none;
}

@media (min-width: 768px) {
  .home-game__instructions {
    display: block;
  }
}

.home-game__instructions p {
  text-align: center;
  line-height: 1.5;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.home-game__instructions--mobile {
  display: block;
}

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

.home-game__container {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 0 auto;
  padding-left: 5vw;
  padding-right: 5vw;
  flex-direction: column;
}

.home-game__navigation {
  display: flex;
  margin-top: 1.5rem;
  flex-direction: column;
}

@media (min-width: 768px) {
  .home-game__navigation {
    flex-direction: row;
    justify-content: space-between;
  }
}

.home-game__pause {
  display: none;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .home-game__pause {
    display: block;
    margin-top: 0;
  }
}

.home-game__controls {
  display: flex;
  margin-top: 1.5rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.home-game__controls button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px #bfcedd;
  background-color: #bfcedd;
  border: 1px solid #343e47;
}

.home-game__controls button:last-child {
  margin-top: 1rem;
}

.home-game__controls button img {
  height: 1.5rem;
  width: 1.5rem;
}

.home-game__controls .btn-up,
.home-game__controls .btn-down {
  position: relative;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
}

.home-game__controls .btn-up:hover, .home-game__controls .btn-up:focus, .home-game__controls .btn-up:active,
.home-game__controls .btn-down:hover,
.home-game__controls .btn-down:focus,
.home-game__controls .btn-down:active {
  background-color: #bfcedd;
}

.home-game__controls .btn-up:active,
.home-game__controls .btn-down:active {
  top: 4px;
  box-shadow: none;
}

.home-game__robot-arm {
  position: absolute;
}

.home-game__robot-arm--left {
  left: -32px;
  bottom: 20px;
  z-index: -1;
}

@media (min-width: 990px) {
  .home-game__robot-arm--left {
    bottom: 100px;
  }
}

.home-game__robot-arm--left img {
  height: auto;
  width: 25vw;
  max-width: 445px;
}

.home-game__robot-arm--right {
  top: 50px;
  right: 0;
  z-index: -1;
}

@media (min-width: 990px) {
  .home-game__robot-arm--right {
    top: 200px;
  }
}

.home-game__robot-arm--right img {
  height: auto;
  width: 21vw;
  max-width: 430px;
}

#game-canvas {
  position: relative;
  z-index: 98;
  height: auto;
  max-width: 100%;
  border: 2px dashed #bfcedd;
}

.home-submit {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  opacity: 0;
  z-index: 2;
  height: auto;
  max-width: 100%;
  visibility: hidden;
  transition: 0.25s ease;
  background-color: #343e47;
}

@media (min-width: 990px) {
  .home-submit {
    margin: 3rem;
    box-shadow: 0px 4px 34px 10px rgba(0, 0, 0, 0.25);
  }
}

.home-submit--is-visible {
  opacity: 1;
  visibility: visible;
}

.home-submit__container {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.home-submit__close {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
}

@media (min-width: 990px) {
  .home-submit__close {
    top: 24px;
    left: 24px;
  }
}

.home-submit__close:hover, .home-submit__close:focus {
  background-color: transparent;
}

.home-submit__inner {
  position: relative;
  display: flex;
  z-index: 10;
  max-width: 700px;
  padding-left: 1rem;
  padding-right: 1rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.home-submit__title {
  display: inline-block;
  font-weight: 900;
  margin-bottom: 1rem;
  font-size: calc(1.875rem + 7.5vw);
  text-transform: uppercase;
  border-bottom: 4px solid #ffffff;
}

@media (min-width: 1200px) {
  .home-submit__title {
    font-size: 7.5rem;
  }
}

.home-submit__subtitle {
  display: block;
  font-size: calc(2.05rem + 9.6vw);
}

@media (min-width: 1200px) {
  .home-submit__subtitle {
    font-size: 9.25rem;
  }
}

.home-submit__description {
  text-align: center;
  line-height: 1.5;
}

.home-submit__input {
  display: flex;
  width: 100%;
  margin-top: 2rem;
  flex-direction: column;
}

@media (min-width: 990px) {
  .home-submit__input {
    width: auto;
    flex-direction: row;
  }
}

.home-submit__input input[type=text] {
  border: none;
  width: 100%;
  outline: none;
  padding: 1rem;
  margin-right: 0;
  font-weight: 500;
  margin-bottom: 0.75rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-family: "Exo", sans-serif;
}

@media (min-width: 990px) {
  .home-submit__input input[type=text] {
    margin-bottom: 0;
    margin-right: 0.75rem;
  }
}

.home-scoreboard {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 2;
  margin: 0;
  height: auto;
  max-width: 100%;
  visibility: hidden;
  align-items: center;
  transition: 0.25s ease;
  flex-direction: column;
  justify-content: center;
  background-color: #343e47;
}

@media (min-width: 990px) {
  .home-scoreboard {
    margin: 3rem;
    box-shadow: 0px 4px 34px 10px rgba(0, 0, 0, 0.25);
  }
}

.home-scoreboard--is-visible {
  opacity: 1;
  visibility: visible;
}

.home-scoreboard__heading {
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: calc(1.325rem + 0.9vw);
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .home-scoreboard__heading {
    font-size: 2rem;
  }
}

.home-scoreboard__inner {
  width: 100%;
  margin-top: 59px;
  max-width: 600px;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  .home-scoreboard__inner {
    font-size: 1.5rem;
  }
}

.home-scoreboard__entry {
  position: relative;
  display: flex;
  margin-top: 1rem;
  justify-content: space-between;
}

.home-scoreboard__entry:first-of-type {
  margin-top: 0;
}

.home-scoreboard__close {
  position: absolute;
  cursor: pointer;
  z-index: 5;
  top: 0;
  left: 0;
  background-color: transparent;
}

@media (min-width: 990px) {
  .home-scoreboard__close {
    top: 24px;
    left: 24px;
  }
}

.home-scoreboard__close:hover, .home-scoreboard__close:focus {
  background-color: transparent;
}

button {
  display: inline-block;
  cursor: pointer;
  color: #343e47;
  border: none;
  outline: none;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  user-select: none;
  white-space: nowrap;
  padding: 1rem 1.5rem;
  vertical-align: middle;
  border-radius: 0.25rem;
  background-color: #bfcedd;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-family: "Exo", sans-serif;
  transition: background-color 0.25s ease;
}

button:hover, button:focus {
  background-color: #fdffa9;
}
/*# sourceMappingURL=index.3a401990.css.map */
