    *{
        box-sizing: border-box;
        color: #e6e6e6;
        text-decoration: 0;
        margin: 0; 
        padding: 0; 
        font-family: Helvetica, arial, sans-serif;
    }
    a{color: #a6a6a6}
    a:hover{color:#e6e6e6}
  html, body {
    background-color: #060606;
    overflow-x: hidden;
    width: 100%;
  }
  h1, h2, h3 { display: block; line-height: 100%; white-space: nowrap; cursor: default; position: relative; z-index: 2; }
  .item { position: relative; z-index: 2; width: 100%; }
  .info{
    padding: 10px 100px 10px 0;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    gap: 20px;
    flex-flow: row wrap;
    vertical-align: center;
    align-items: center;
  }
  .cover{
    background: #363636;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .cover img{
    width: 100%;
    height: 100%;
  }

  #imgOverlay{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity .15s;
    width: 900px;
    height: 900px;
    max-width: 100vmax;
    max-height: 100vmax;
  }
  #imgOverlay.on{ opacity: 1; }
  #imgOverlay img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }