* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
}

@font-face {
  font-family: Smirnoff, Arial, Helvetica, sans-serif;
  src: url(fonts/Smirnof.ttf);
}

::selection {
    background: blue;
}

body {
    background-color: #000;
}

p, a, h1 {
    color: #fff;
    font-family: Smirnof;
    font-size:18px;
}

a:link, a:visited {
    color: #fee401;
}

a {
    text-decoration-line: none;
}

a:hover {
    text-decoration-line: underline;
}

.textbubble {
    position: absolute;
    top: 15%;
    left: 0; right: 0;
    margin: auto;
    max-width: 530px;
    padding: 40px;
}

.light {
    position: fixed;
    width: 100%;
    height: 30%;
    bottom: 0;
}

.light-back {
    background: linear-gradient(0deg,rgba(43, 56, 62, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.light-front {
    background: linear-gradient(0deg,rgba(43, 56, 62, 1) 0%, rgba(43, 56, 62, 0) 80%);
}

.noise-gradient::after {
    content: "";
    display: block;

    width: 100%;
    height: 100%;
    mix-blend-mode: soft-light;

    background-image: url("images/btwg/noisescroll.gif");
    background-position: center;
    background-size: 20%;
}

.grid-wrapper {
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1/1;
    padding: 30px;
}
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid img:hover{
    filter: brightness(20);
}

.cover {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
}
#static {
    opacity: 1.0;
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    margin: auto;
    min-width: 50%;
    min-height: 50%;
    overflow-x: hidden;
    z-index: -1;
}

/* MOBILE */

@media screen and (max-width: 1000px) {
    
}

@media screen and (max-width: 700px) {
    
}