body {
    background: #000;
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    cursor: pointer;
}

iframe {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    border: 0;
}

img#zoom {
    width: 20px;
    height: auto;
    z-index: 100;
    left: 50vw;
    top: 50vh;
    position: absolute;
    transform: translateX(-50%) translateY(-50%) scale(1);
    transition: 2s;
    pointer-events: none;
}

img#leaves {
    width: 100vw;
    height: auto;
    top: -100vw;
    position: absolute;
    z-index: 100;
    transition: 3.5s;
    pointer-events: none;
}

canvas {
  display: block;
  mix-blend-mode: darken;

  position: absolute;
  left: 50vw;
  top: 50vh;
  cursor: pointer;
  opacity: 0;
  transition: 0.5s;
}

.credits {
    position: absolute;
    bottom: 30px;
    left: 50px;
    text-align: left;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 100;
    letter-spacing: -0.5px;
    transform: scaleX(0.95);
    color: #999;
}

.credits b {
    padding-left: 5px;
    font-weight: 800;
    color: #aaa;
}

.credits a {
    text-decoration: none;
    font-style: italic;
    color: #003366;
    transition: 0.1s;
}

.credits a:hover { color: #0066cc; }
.credits a:active { color: #004d99; }
