a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }
  
  article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
  }
  
  body {
    line-height: 1;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    font-family: sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #444;
    background-color: #000;
    perspective: 1000;
  }
  
  ol, ul {
    list-style: none;
  }
  
  blockquote, q {
    quotes: none;
  }
  
  blockquote:after, blockquote:before, q:after, q:before {
    content: "";
    content: none;
  }
  
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  html {
    display: table;
    width: 100%;
  }
  
  body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  canvas {
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
  }
  
  button {
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    padding: 8px 16px;
    color: #000;
    text-shadow: 0 1px 2px hsla(0, 0%, 100%, 0.15);
    background-color: #ad68d9;
    background-image: linear-gradient(#ad68d9, #a960d7);
    box-shadow: inset 0 0 2px hsla(0, 0%, 100%, 0.15);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease-out;
  }
  
  button:hover {
    transform: scale(1.05);
    background-image: linear-gradient(#c391e3, #bf89e1);
  }
  
  button:active {
    transform: scale(0.95);
    opacity: 0.5;
  }
  
  audio {
    position: absolute;
    width: 0;
    height: 0;
    visibility: hidden;
  }
  @keyframes Cue-In {
    0% {
      opacity: 0;
      transform: scale(0.1) rotateX(45deg);
    }
    to {
      transform: scale(1) rotateX(0);
    }
  }
  .cue-in {
    animation: Cue-In 2s ease-in-out;
  }