body{
  background: #3399ff;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}


.circle{
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: ripple 15s infinite;
  box-shadow: 0px 0px 1px 0px #508fb9;
}


.small{
  width: 200px;
  height: 200px;
  left: -100px;
  bottom: -100px;
}

.medium{
  width: 400px;
  height: 400px;
  left: -200px;
  bottom: -200px;
}

.large{
  width: 600px;
  height: 600px;
  left: -300px;
  bottom: -300px;
}

.xlarge{
  width: 800px;
  height: 800px;
  left: -400px;
  bottom: -400px;
}

.xxlarge{
  width: 1000px;
  height: 1000px;
  left: -500px;
  bottom: -500px;
}

.shade1{
  opacity: 0.2;
}
.shade2{
  opacity: 0.5;
}

.shade3{
  opacity: 0.7;
}

.shade4{
  opacity: 0.8;
}

.shade5{
  opacity: 0.9;
}

@keyframes ripple{
  0%{
    transform: scale(0.8);
  }
  
  50%{
    transform: scale(1.2);
  }
  
  100%{
    transform: scale(0.8);
  }
}

.container {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: 'Comic Neue', sans-serif;
  z-index: 99999999;
}

.container p {
  color: black;
  padding: 10px;
}

.whatsapp-div {
  position: fixed;
  bottom: 10px;
  right: 20px;
  padding: 4px;
  border-radius:15px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: rgba(243, 3, 163, 0.4);
  color: white;
  z-index: 99999999;
}
.whatsapp-div i {
  font-size: 34px;
  text-decoration: none;
}
.bailando-letras {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  color: #4ecdc4;
}

.bailando-letras span {
  display: inline-block;
  animation: dance 2s ease-in-out infinite;
}

.bailando-letras span:nth-child(2n) {
  animation-delay: 0.1s;
}

.bailando-letras span:nth-child(3n) {
  animation-delay: 0.2s;
}

.bailando-letras span:nth-child(4n) {
  animation-delay: 0.3s;
}

@keyframes dance {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(5px) rotate(-5deg); }
  75% { transform: translateY(-10px) rotate(3deg); }
}