.wrapper {
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--extra-1-color);
}

.wrapper .container {
  width: 100%;
  height: 100%;
  max-width: 1400px;
  background-color: var(--light-color);
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wrapper .container .headline {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wrapper .container .headline h1 {
  text-align: center;
  font-size: 4rem;
}

.wrapper .container .headline p {
  text-align: center;
  font-size: 1.25rem;
}

.wrapper .container .headline img {
  margin-top: 0.5rem;
  width: 400px;
}

.game {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;

  align-items: center;
}

.game__controls {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Utilities */
.btn {
  text-decoration: none;
  text-align: center;
  color: var(--dark-color);
  padding: 0.75rem 2rem;
  border: 2px solid var(--dark-color);
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-weight: 600;
  background-color: var(--light-color);
  transition: all 100ms ease-in-out;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--extra-1-color);
  color: var(--dark-color);
}

.btn-start {
  font-weight: 600;
  margin-top: 3rem;
}

.hide {
  display: none;
}

/* Desktop styles */
@media screen and (min-width: 1280px) {
  .wrapper .container {
    border: 15px solid var(--dark-color);
  }

  .btn {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

/* -- */
body {
  margin: 0;
  padding: 0;
  border: none;
}

#divmenu {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 225px;
  height: 0px;
  cursor: default;
  z-index: 50001;
  border-radius: 5px;
}
#divmenu.open {
  width: 225px;
  background-color: var(--light-color);
  z-index: 50001;
}

#divmenu .title {
  padding: 1rem 0.15rem;
  border: 2px solid var(--dark-color);
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1rem;
  color: var(--dark-color);
  background-color: var(--light-color);
  cursor: pointer;
}

#divmenu .line {
  text-align: center;
  font-size: 1rem;
  line-height: 1rem;
  padding: 0.75rem 0.15rem;
  color: var(--dark-color);
  display: none;
  cursor: pointer;
}

#divmenu.open .line {
  display: block;
}
#divmenu.open .line:hover {
  background-color: var(--extra-1-color);
  cursor: pointer;
}
