@import url(https://fonts.googleapis.com/css?family=Orbitron);
@import url(https://fonts.googleapis.com/css?family=VT323);

body {
  padding: 0;
  margin: 0;
  background: #0D0D10;
  font-family: 'Orbitron';
  font-family: 'VT323';

}

#background{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0;
   -webkit-transition: opacity 2s;
  transition: opacity 2s;
}

.loaded #background {
  opacity: 1;
}

.tile{
  float: left;
  width: 2%;
  padding-bottom: 2%;
  background: #0D0D10;
}



.tile.on {
  background: #fff;
}

h1{
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 11%;
  color: #fff;
  mix-blend-mode: difference;
  text-align: center;
  width: 100%;
  font-size: 3vw;
  z-index: 6;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.1s, left 0.5s;
  transition: opacity 0.5s, transform 0.1s, left 0.5s ;
  opacity: 0;
}

.loaded h1 {
  opacity: 1;
}

.no h1, .yes h1 {
  opacity: 0;
}

#shirt, #no_shirt {
  position: absolute;
  width: 44%;
  padding-bottom: 44%;
  left: 6%;
  top: 0%;
  margin-top: 10%;
  background: #fff;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.1s, left 0.5s;
  transition: opacity 0.5s, transform 0.1s, left 0.5s ;
  opacity: 0;
}

.loaded #shirt, .loaded #no_shirt {
  opacity: 1;
}


#shirt:hover, #no_shirt:hover {
  transform: scale(1.11);
  z-index: 2;
  -webkit-box-shadow: 0px 0px 29px -2px rgba(0,0,0,0.73);
  -moz-box-shadow: 0px 0px 29px -2px rgba(0,0,0,0.73);
  box-shadow: 0px 0px 29px -2px rgba(0,0,0,0.73);
}

#shirt .price, #no_shirt .price {
  position: absolute;
  bottom: 1vw;
  right: 1vw;
  font-size: 2vw;
}

.no .price{
  opacity: 0;
}

#shirt img{
  width: 80%;
  left: 10%;
  top: 15%;
  position: absolute;
}
a#shirt {
  color: #000;
}

#no_shirt {
  left: 50%;
  background: #0D0D10;
  text-align: center;
  color: #fff;
}
a#no_shirt {
  color: #fff;
}

#no_shirt span {
  top: 45%;
  left: 0;
  display: inline-block;
  position: absolute;
  width: 100%;
  font-size: 4vw;
}

.no #no_shirt, .no #shirt, .yes #no_shirt, .yes #shirt {
  left: 28%;
  transition: all .5s;
}

.no #no_shirt, .yes #shirt {
  z-index: 4;
}

#no_thanks{
  top: 15%;
  opacity: 0;
  position: absolute;
  color: #fff;
  font-size: 2.5vw;
  padding: 0 2.5vw;
}

.no #no_thanks{
  opacity: 100;
}


