
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');


body {
	font-family: 'Bungee', sans-serif;
  min-height: 150vh;
  background-size: cover;
  background-attachment: scroll;
 background: url("background.png") repeat center center / cover;
}

h1 {
	text-align: center;
	margin-top: 60px;
  color:blueviolet
}

.cookiejar {
  position: absolute;
  top: 20%;
  left:10%;
  width: 500px;
  animation: float 10s ease-in-out infinite;
  
}

.soapshop {
  position: absolute;
  top: 50%;
  left:70%;
  width: 400px;
  animation: soapfloat 10s ease-in-out infinite;
  
} 

.artcookie {
  position: absolute;
  top: 40%;
  left:30%;
  width: 400px;
  animation: artfloat 7s ease-in-out infinite;
  
}

.blogcookie {
  position: absolute;
  top: 120%;
  left:40%;
  width: 400px;
  animation: blogfloat 7s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  
}
  

@keyframes blogfloat {
  0% {
    transform: translate(0, 100);
  }
  50% {
    transform: translate(70px, -150px);
  }
  100% {
    transform: translate(0, 100);
  } 


}
@keyframes artfloat {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-160px, 20px);
  }
  100% {
    transform: translate(0, 0);
  } 
}

@keyframes soapfloat {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-150px, -35px);
  }
  100% {
    transform: translate(0, 0);
  } 
}
@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, -20px);
  }
  100% {
    transform: translate(0, 0);
  } 
}

/* Snail - https://www.cursors-4u.com/cursor/nat300 */
* {
  cursor: url('https://cdn.cursors-4u.net/previews/snail-2f726645-32.webp') 32 32, auto !important;
}
/* End www.Cursors-4U.com Code */