    @import url('https://fonts.googleapis.com/css2?family=B612:ital,wght@0,400;0,700;1,400;1,700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Freckle+Face&family=Handjet:wght@100..900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Jua&family=Patrick+Hand+SC&family=Roboto+Slab:wght@100..900&display=swap');
.patrick-hand-sc-regular {
  font-family: "Patrick Hand SC", cursive;
  font-weight: 400;
  font-style: normal;
}
.jua-regular {
  font-family: "Jua", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-slab-uniquifier {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body{
  margin: 0;
  height: 100vh;
  /*background-color: #938B78;*/
  background-image: url('images/afbg3.jpg');
  background-repeat: repeat;
  background-position: top left;
  background-size: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: url(''), auto;
}

#tamagotchi{
  width: 200px;
  position: absolute;
  display: flex;
  z-index: 5;
  top: 200px;
  left: 200px;
  filter: drop-shadow(2px 2px 0px #d2d5c5) drop-shadow(-2px -2px 0px #d2d5c5) drop-shadow(2px -2px 0px #d2d5c5) drop-shadow(-2px 2px 0px #d2d5c5);
 animation: slowbobbing 0.4s infinite alternate ease-in-out;
}

@keyframes slowbobbing{
  0%{
    transform: translatey(-3px);
  }
  100%{
    transform: translatey(3px);
  }
}

#tamagotchi:hover{
  animation: bobbing 0.2s infinite alternate ease-in-out;
}

@keyframes bobbing{
  0%{
    transform: translatey(-5px);
  }
  100%{
    transform: translatey(5px);
  }
}














