.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  display: none;
}

.modal.show {
  display: grid;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal__inner {
  display: grid;
  grid-template:
    "a b c d" 25%
    "e f g h" 50%
    "i j k l" 25%
    / 1fr minmax(auto, 150px) minmax(auto, 150px) 1fr;
  max-width: 600px;
  height: auto;
  align-items: baseline;
}

.frog {
  grid-area: 1 / 1 / 3 / 3;
  max-height: 450px;
  height: auto;
}

.frogger {
  grid-area: 1 / 3 / 5 / 5;
  max-height: 450px;
  height: auto;
}

.confirm {
  grid-area: 2 / 2 / 2 / 4;
  background: var(--color-black);
  border-radius: 35px;
  display: grid;
  grid-template:
    "headline headline" auto
    "text text" auto
    "no yes" auto
    / 1fr 1fr;
  justify-content: center;
  justify-items: center;
  align-items: center;
  align-content: space-evenly;
  font-weight: 700;
  align-self: normal;
  min-height: 240px;
}

.confirm__headline {
  grid-area: headline;
  margin: 0;
}

.confirm__text {
  grid-area: text;
  margin: 0;
}

.legal.no {
  background: var(--color-red);
  grid-area: no;
}

.legal.yes {
  grid-area: yes;
}
