
/* COLORS */

:root {
  --color-primary: #285AB4;
  --color-secondary: #FFC533;
  --color-black: black;
  --color-white: #F5F5F5;
}




body {
    background: #D2F5FF;
    overflow: hidden;
    margin: 0;
}

.bubbles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.bubbles span {
     position: absolute;
    bottom: -100px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.75);
    /* border: 3px solid rgba(255, 255, 255, 0.9); */
    /* box-shadow:
        0 0 12px rgba(255, 255, 255, 0.8),
        inset 0 0 8px rgba(255, 255, 255, 0.9); */

    animation: rise 12s linear infinite;
}

/* Different sizes and positions */
.bubbles span:nth-child(1) {
    left: 8%;
    width: 18px;
    height: 18px;
    animation-duration: 8s;
    animation-delay: 0s;
}

.bubbles span:nth-child(2) {
    left: 18%;
    width: 40px;
    height: 40px;
    animation-duration: 14s;
    animation-delay: 2s;
}

.bubbles span:nth-child(3) {
    left: 30%;
    width: 24px;
    height: 24px;
    animation-duration: 10s;
    animation-delay: 1s;
}

.bubbles span:nth-child(4) {
    left: 42%;
    width: 55px;
    height: 55px;
    animation-duration: 18s;
    animation-delay: 4s;
}

.bubbles span:nth-child(5) {
    left: 55%;
    width: 30px;
    height: 30px;
    animation-duration: 12s;
    animation-delay: 3s;
}

.bubbles span:nth-child(6) {
    left: 68%;
    width: 20px;
    height: 20px;
    animation-duration: 9s;
    animation-delay: 5s;
}

.bubbles span:nth-child(7) {
    left: 82%;
    width: 45px;
    height: 45px;
    animation-duration: 15s;
    animation-delay: 2s;
}

.bubbles span:nth-child(8) {
    left: 92%;
    width: 14px;
    height: 14px;
    animation-duration: 7s;
    animation-delay: 6s;
}

@keyframes rise {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateY(-50vh) translateX(20px);
    }

    100% {
        transform: translateY(-110vh) translateX(-20px);
        opacity: 0;
    }
}




/* FONT STYLES */

@font-face {
    font-family: 'Super Chiby';
    src: url('fonts/SuperChiby.ttf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

h1 {
  color: var(--color-primary);
  font-size: 100px;
  line-height: 4.5rem;
  font-family: 'Super Chiby';
  margin: 0px;
  padding-bottom: 100px;
  /* animation: float 3s ease-in-out infinite; */
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

p {
  font-size: 16px;
}

.wrapper {
    display: flex;
    flex-direction: column; /* stack items vertically */
    justify-content: center; /* center vertically */
    align-items: center; /* center horizontally */
    min-height: 100vh; /* full viewport height */
    text-align: center;
    
}

.mochi{
  animation: float 3s ease-in-out infinite;
  margin-bottom: -10px;
}


/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 90px;
    }


}