.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-image: url('../assets/general/images/background/background.png');
  background-position: center center;
  background-size: cover;
}

.hero {
  width: 100%;
  height: 50%;
  padding: 0 1.5rem;
}

.hero .hero__image {
  height: 100%;
}

.hero .hero__image img {
  object-fit: contain;
}

.options .headline {
  text-align: center;
}

.options .headline h1 {
  font-size: 2rem;
  font-weight: 500;
}

.options .headline h1 i {
  font-size: 2rem;
}

.options {
  height: 50%;
}

.options .games {
  margin-top: 32px;
  width: 100%;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.options .games .game {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

/* Table styles */
@media screen and (min-width: 768px) {
  .options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .options .headline h1 {
    font-size: 2.5rem;
  }

  .options .headline h1 i {
    font-size: 2rem;
  }

  .options .games {
    gap: 0px;
  }

  .options .games .game {
    width: calc(100% / 3);
    height: 100%;
  }

  .btn {
    transform: rotate(0deg);
  }
}

/* Desktop styles */
@media screen and (min-width: 1400px) {
  .wrapper .container {
    border: 15px solid var(--dark-color);
    transition: all 250ms ease-in-out;
  }

  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero .hero__image {
    height: 70%;
  }

  .options .headline {
    margin-bottom: 32px;
  }

  .options .games {
    margin-bottom: 32px;
  }

  .options .games .game:first-child {
    justify-content: flex-end;
  }
  .options .games .game:last-child {
    justify-content: flex-start;
  }

  .options .headline h1 {
    font-size: 3rem;
  }

  .btn {
    font-size: 2rem;
  }
}
