@import url('http://fonts.googleapis.com/css?family=Montserrat:400,700');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:before, *:after {
  content: '';
  display: block;
  position: absolute;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: #000;
}

.light {
    background: #fff;
}

.szene {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 800px;
  height: 600px;
  margin-left: -400px;
  overflow: hidden;
}

.szene div {
  position: absolute;
}

.image {
  width: 120px;
  height: 120px;
  line-height: 100px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #888;
  border: 8px solid #444;
  background: #eee;
}

.image.i1 { top: 60px; left: 100px; }
.image.i2 { top: 60px; left: 300px; }
.image.i3 { top: 215px; left: 100px; }
.image.i4 { top: 215px; left: 300px; }

.image .nail {
  top: -30px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: #444;
}

.image .nail:before,
.image .nail:after {
  top: -5px;
  width: 1px;
  height: 35px;
  background: #444;
}

.image .nail:before { left: -11px; transform: rotate(55deg); }
.image .nail:after { left: 19px; transform: rotate(-55deg); }

.head {
  bottom: 90px;
  left: 220px;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #eee;
}

.head .eyes {
  top: 58px;
  left: 30px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #444;
  box-shadow: 20px 0 0 #444;
  animation: 8s eyes ease infinite;
}

@keyframes eyes {
  0% { transform: translate3d(0,0,0); }
  5% { transform: translate3d(0,-18px,0); }
  10% { transform: translate3d(0,-19px,0); }
  15% { transform: translate3d(-15px,-18px,0); }
  20% { transform: translate3d(-15px,-18px,0); }
  25% { transform: translate3d(15px,-18px,0); }
  30% { transform: translate3d(15px,-18px,0); }
  35% { transform: translate3d(0,-18px,0); }
  40% { transform: translate3d(0,-18px,0); }
  45% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(0,0,0); }
}

.body {
  bottom: -20px;
  left: 220px;
  width: 82px;
  height: 110px;
  border-radius: 0 0 50% 50%;
  background: #eee;
}

.table {
  bottom: 15px;
  width: 500px;
  height: 15px;
  background: #444;
}

.table:before,
.table:after {
  top: 15px;
  width: 10px;
  height: 20px;
  border-top: 3px solid #aaa;
  background: #eee;
}

.table:before { left: 20px; }
.table:after { right: 20px; }

.laptop {
  bottom: 35px;
  left: 190px;
  width: 140px;
  height: 70px;
  border-radius: 2px 2px 0 0;
  background: #ddd;
}

.laptop:before {
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  background: #fff;
}

.laptop:after {
  top: 70px;
  left: -5px;
  width: 150px;
  height: 5px;
  border-radius: 2px 2px 0 0;
  background: #888;
}

.mouse {
  bottom: 30px;
  left: 145px;
  width: 20px;
  height: 6px;
  border-bottom: 2px solid #888;
  border-radius: 25%;
  background: #ddd;
}

.lamp {
  bottom: 30px;
  left: 45px;
  width: 40px;
  height: 20px;
  border-radius: 80px 80px 0 0;
  background: #eee;
  cursor: pointer;
}

.lamp:before,
.lamp:after {
  z-index: -1;
  width: 6px;
  height: 80px;
  background: #ccc;
}

.lamp:before { top: -70px; left: 8px; transform: rotate(-15deg); }
.lamp:after { top: -108px; left: 30px; transform: rotate(75deg) }

.lamp .top {
  top: -75px;
  left: 45px;
  width: 50px;
  height: 25px;
  border-radius: 100px 100px 0 0;
  background: #eee;
  transform: rotate(-15deg);
}

.headphones {
  bottom: 85px;
  left: 208px;
  width: 110px;
  height: 100px;
  border-radius: 50%;
  border-top: 10px solid #444;
}

.headphones:before,
.headphones:after {
  width: 20px;
  height: 40px;
  top: 20px;
  background: #ddd;
}

.headphones:before {
  left: -8px;
  border-radius: 80px 0 0 80px;
  border-right: 3px solid #444;
}

.headphones:after {
  right: -7px;
  border-radius: 0 80px 80px 0;
  border-left: 3px solid #444;
}