.Modal {
  display: grid;
  grid-template-rows: auto 1fr auto;

  .header {
    background: yellow;
  }

  .content {
    background: green;
  }

  .footer {
    background: orange;
  }
}
