body, body * {
    vertical-align: baseline;
    border: 0 none;
    outline: 0;
    padding: 0;
    margin: 0;
    color: #000;
}

body {
    font-size: 12px;
}

#main-container {
    position: relative;
    width: 300px;
    height: 250px;
    overflow: hidden;
    /* border: 1px solid #333; */
    box-sizing: border-box;
    user-select: none; 
}

#exit {
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 10;
    position: absolute;
}

:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}

#main-container > * {
    position: absolute;
}

svg * {
    color: inherit;
}

/***********************/

@font-face{
    font-family:"t";
    src:url("t-reg.woff2") format("woff2"),url("t-reg.woff") format("woff");
    font-weight: normal;
}
@font-face{
    font-family:"t";
    src:url("t-bold.woff2") format("woff2"),url("t-bold.woff") format("woff");
    font-weight: bold;
}

#main-container {
    background: #eee url('bg.jpg');
    background-size: cover;
    color: #000;
    font-family: t, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

#main-container::before {
    content: '';
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(bg-overlay.jpg);
    background-size: cover;
    transform: scale(1.55);
    mix-blend-mode: overlay;
    animation: bg-spin 5s infinite linear;
}

@keyframes bg-spin {
    0%   { transform: scale(1.55) rotateZ(0deg); }
    100% { transform: scale(1.55) rotateZ(360deg); }
}

#main-container * {
    color: #000;
}

.txt  {
    font-size: 1em;
    line-height: 1.2;
}

#lasers {
    perspective: 300px;

    mix-blend-mode: screen;
    transform-style: preserve-3d;
}

#lasers, #lasers * {
    position: absolute;
}

#lasers .face {
    width: 73px;
    height: 600px;
    transform-origin: center top;
    background: url('ray.png');
    left: -36px;
}

#lasers .face:nth-child(2){
    transform: rotateY(90deg);
}

.ray-inner {
    transform: rotateZ(-22deg);
    transform-origin: center top;
    transform-style: preserve-3d;
}

.ray {
    transform-origin: top center;
    transform-style: preserve-3d;
}

.ray:nth-child(2) {
    transform: rotateY(120deg);
}
.ray:nth-child(3) {
    transform: rotateY(240deg);
}

.bundle {
    transform-style: preserve-3d;
    animation: bundle-spin 10s infinite linear;
    /* left: 100px; */

}
.bundle:nth-child(2) {
    left: 170px;
    top: -40px;
    animation-name: bundle-spin-small;
    animation-direction: reverse;
    animation-duration: 12s; 
}
.bundle:nth-child(2) .face {

    opacity: 0.5;
}

.bundle:nth-child(2) .ray-inner {
    transform: rotateZ(-10deg);
}

#lasers {
    /* animation: flicker 33.33333ms */
    animation: flicker 66.6666ms steps(2, jump-none) infinite;
}

@keyframes bundle-spin {
    0%   { transform: rotateZ(-32deg) rotateY(0deg); }
    100% { transform: rotateZ(-32deg) rotateY(360deg); }
}
@keyframes bundle-spin-small {
    0%   { transform: rotateZ(-42deg) rotateY(0deg); }
    100% { transform: rotateZ(-42deg) rotateY(360deg); }
}


@keyframes flicker {
    0%   { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.vid {
    display: none;
    z-index: 9;
}

.lw-logo {
    left: 50%;
    top: 50%;
}
.lw-logo svg {
    height: 210px;
    width: auto;
    transform: translate(-50%,-50%);
}

.lb-logo svg {
    width: 30px;
    height: auto;
}

.text-tl {
    left: 28px;
    top: 28px;
}

.text-br {
    right: 28px;
    bottom: 28px;
    font-size: 0.8em;
}

.txt.big {
    font-size: 1.2em;
    width: 184px;
}

.cta span {
    display: inline-block;
    border: 1px solid #000;
    font-size: 1.3em;
    padding: 0.3em 0.5em;
    margin-top: 1.8em;
    transition: all 0.35s cubic-bezier(0.24, 0.9, 0.3, 1);
}

#main-container:hover .cta span {
    background: #000;
    color: #fff;
}

.txt > span {
    display: block;
}