/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #6EC9FF;
  background-image: url("p.gif");
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  
}
#cursor-trail{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:999999;
  pointer-events:none;
}

#cursor-trail span{
  position:absolute;
  width:18px;
  height:18px;
  border-radius:50%;
  opacity:0;
  background: rgba(0,204,255,0.35);
  border: 1px solid rgba(0,204,255,0.35);
  box-shadow: 0 0 18px rgba(0,204,255,0.35);
}
#cursor-trail span:nth-child(1){width:18px;height:18px;}
#cursor-trail span:nth-child(2){width:14px;height:14px;}
#cursor-trail span:nth-child(3){width:12px;height:12px;}
#cursor-trail span:nth-child(4){width:10px;height:10px;}
#cursor-trail span:nth-child(5){width:8px;height:8px;}
#cursor-trail span:nth-child(6){width:6px;height:6px;}

.wiggle-btn{
  display:inline-block;
  animation: btnSlide 1.2s ease-in-out infinite;
}
@keyframes btnSlide{
  0%{ transform: translateX(0); }
  35%{ transform: translateX(18px); }
  70%{ transform: translateX(-6px); }
  100%{ transform: translateX(0); }
}