body {
    background-color: #FFFFFF;
    display: table-cell;
    height: 100vh;
    margin: 0;
    text-align: center;
    vertical-align: middle;
    width: 100vw;
  }
  
  .case {
    background-color: #fff;
    border-color: #000;
    border-radius: 5px;
    border-style: solid;
    border-width: 6px 8px 10px 8px;
    display: inline-grid;
    grid-template-columns: repeat(36, 1fr);
    grid-template-rows: repeat(5, 1fr);
    height: 17em;
    padding: 8px;
    user-select: none;
    width: 60em;
  }
  
  .key {
    border-color: #000 #000;
    border-radius: 3px;
    border-style: solid;
    border-width: 5px 7px 10px 7px;
    color: #000;
    display: block;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 800;
    grid-column-end: span 2;
    margin: 3px;
    padding-top: 2px;
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
    transition: all 50ms ease-out;
    will-change: box-shadow, color, text-shadow;
  }
  
  .key:empty::before {
    content: attr(data-key);
  }
  
  .active {
    transform: perspective(1200px) translateZ(-90px);
  }
  
  .medium {
    grid-column-end: span 3;
  }
  
  .large {
    grid-column-end: span 4;
  }
  
  .xl {
    grid-column-end: span 5;
  }
  
  .xxl {
    grid-column-end: span 6;
  }
  
  .xxxl {
    grid-column-end: 7;
  }
  
  .huge {
    grid-column-end: span 12;
  }
  