.scenario-wrapper,
.welcome-screen {
  background: #d1d0cb;
  min-height: 100vh;
  padding: 40px 20px;
  font-family: "victor", monospace;
  box-sizing: border-box;
}
.scenario-wrapper h1,
.welcome-screen h1 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3rem;
  letter-spacing: 2px;
}
.scenario-wrapper .cards-grid,
.welcome-screen .cards-grid {
  display: grid;
  gap: 20px;
  justify-content: center;
}
.welcome-screen .cards-grid {
  grid-template-columns: repeat(auto-fill, 180px);
}
.welcome-screen .cards-grid .scenario-card {
  width: 180px;
  height: 180px;
  background: #fff;
  border: 3px solid #000;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.1s ease;
}
.welcome-screen .cards-grid .scenario-card .card-content {
  padding: 15px;
}
.welcome-screen .cards-grid .scenario-card .card-content h2 {
  font-size: 1rem;
  margin: 0 0 5px;
  line-height: 1.2;
}
.welcome-screen .cards-grid .scenario-card .card-content p {
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.5;
}
.welcome-screen .cards-grid .scenario-card:hover {
  background: #00ff00;
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0px #000;
}
.scenario-wrapper .cards-grid {
  grid-template-columns: 320px 180px;
  grid-template-areas: "main choice1" "main choice2" "extras extras";
}
.scenario-wrapper .cards-grid .main-card {
  grid-area: main;
  width: 320px;
  height: 380px;
  background: #fff;
  border: 3px solid #000;
  box-shadow: -8px 8px 0px #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.scenario-wrapper .cards-grid .main-card .card-image {
  height: 180px;
  border-bottom: 3px solid #000;
}
.scenario-wrapper .cards-grid .main-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scenario-wrapper .cards-grid .main-card .card-body {
  padding: 20px;
}
.scenario-wrapper .cards-grid .main-card .card-body h1 {
  font-size: 1.2rem;
  margin: 0;
}
.scenario-wrapper .cards-grid .main-card .card-body p {
  font-size: 0.9rem;
  margin-top: 10px;
  line-height: 1.4;
}
.scenario-wrapper .cards-grid .choice-card {
  width: 180px;
  height: 180px;
  background: #fff;
  border: 3px solid #000;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.1s ease;
}
.scenario-wrapper .cards-grid .choice-card:hover {
  background: #ffff00;
  transform: translate(4px, -4px);
  box-shadow: -4px 4px 0px #000;
}
.scenario-wrapper .cards-grid .choice-card:nth-child(2) {
  grid-area: choice1;
}
.scenario-wrapper .cards-grid .choice-card:nth-child(3) {
  grid-area: choice2;
}
.scenario-wrapper .cards-grid .choice-card:nth-child(n+4) {
  grid-row: 3;
  justify-self: start;
}
@media (max-width: 650px) {
  .welcome-screen .cards-grid,
  .scenario-wrapper .cards-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-template-areas: none;
  }
  .welcome-screen .cards-grid .main-card,
  .scenario-wrapper .cards-grid .main-card,
  .welcome-screen .cards-grid .scenario-card,
  .scenario-wrapper .cards-grid .scenario-card,
  .welcome-screen .cards-grid .choice-card,
  .scenario-wrapper .cards-grid .choice-card {
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 60px;
    box-shadow: 4px 4px 0px #000 !important;
    transform: none !important;
  }
  .welcome-screen .cards-grid .scenario-card,
  .scenario-wrapper .cards-grid .scenario-card,
  .welcome-screen .cards-grid .choice-card,
  .scenario-wrapper .cards-grid .choice-card {
    padding: 15px 0;
  }
}
