.muistilappu
  {
  display: none; /* flex */
  XXXdisplay: flex;
  z-index: 200;

  height: 100%;
  padding: 3vh;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  

  background-color: rgba(255,255,0,0.6);
  overflow: hidden;

  outline: 1vh solid #567;
  outline-offset: -2vh;

  h2
    {
    font-size: clamp(1.5rem, 12vw, 3rem);
    font-weight: 700;
    color: blue;
    }

  .asia
    {
    font-size: clamp(1.2rem, min(6vw, 4vh), 2rem);
    text-align: center;
    text-wrap: balance;
    hyphenate-limit-chars: 8 6 4;
    }
  }

@media only screen and (max-height: 600px) 
  {
  h2
    {
    display: none;
    }
  }
