.var {
  color: rgb(229, 136, 167);
}

.string {
  color: rgb(157, 223, 26);
}

.boolean {
  color: rgb(238, 107, 151);
}

.method {
  color: rgb(80, 80, 251);
}

.return {
  color: aqua;
}

.number {
  color: orangered;
}

.name {
  color: #fff;
}

.resume-container {
  animation: moveIt 6s infinite ease-in-out;
}

.resume-img {
  filter: grayscale(100%);
}

@keyframes moveIt {
  0% {
    transform: scale(0.9);
  }
  25% {
    transform: scale(0.85);
  }
  50% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(0.85);
  }
}

.area {
  width: 200px;
  height: 500px;
  transform-origin: top;
  -moz-transform-origin: top;
  -webkit-transform-origin: top;
  position: absolute;
  top: 0;
  left: 0;
  /* right: 0; */
  z-index: 10;
}

.wire {
  position: relative;
  left: 98px;
  height: 100px;
  width: 4px;
  background-color: black;
}

.fixture {
  position: relative;
  background-color: grey;
  width: 16px;
  height: 20px;
  left: 92px;
}

.strip {
  position: relative;
  width: 18px;
  height: 2px;
  right: 1px;
  top: 4px;
  background-color: darkgrey;
}

.strip:nth-of-type(2) {
  top: 7px;
}

.strip:nth-of-type(3) {
  top: 10px;
}

.bulb {
  position: relative;
  width: 40px;
  height: 40px;
  left: 80px;
  bottom: 2px;
  z-index: -1;
  background-color: rgba(222, 188, 77, 0.85);
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 300px 77px rgb(237, 157, 19);
  -moz-box-shadow: 0px 0px 300px 77px rgba(235, 209, 164, 1);
  box-shadow: 0px 0px 300px 77px rgba(235, 209, 164, 1);
}

.zig {
  position: relative;
  background-color: transparent;
  width: 10px;
  height: 5px;
  border-radius: 5px / 2.5px;
  left: 14px;
  border: black solid 1px;
}

.zig:nth-of-type(2) {
  top: -3px;
}

.zig:nth-of-type(3) {
  top: -6px;
}