body {
background-image: url("https://64.media.tumblr.com/a547a7c2e2f0887386b2123f1aac323c/28d58f1992057eea-73/s1280x893/e55f33e493bb6c829648c0b8e73179c2f4ae0e2d.png");
font-family: "Walshes";;
}

@font-face {
  font-family: "Walshes";
  src: url("https://nocturnecreature.neocities.org/walshes/Walshes.otf");
}


#info {
  background-color: black;
  color: red;
  box-shadow: 5px 2px red;
}

.kal {
  display: flex;
  flex-wrap: wrap;
}

.extra {
  display: flex;
  flex-wrap: wrap;
  color: white;
  margin-top: -400px;
}

#front {
  position: absolute;
  transition: 0.2s
}

#front:hover {
  transform: scale(1.1);
}

#back {
  position: absolute;
  margin-left: 400px;
  transition: 0.2s
}

#back:hover {
  transform: scale(1.1);
}

#info {
  margin-left: 900px;
  margin-top: 100px;
  transform: rotate(10deg);
}

#clothes {
  margin-top: 200px;
  margin-left: 550px;
  height: auto;
  width: 300px;
  position: absolute;
}

#face {
  margin-top: 200px;
  margin-left: 400px;
  width: auto;
  height: 300px;
}

#real {
  width: auto;
  height: 300px;
  margin-left: 400px;
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}