@import url('https://fonts.googleapis.com/css2?family=Rubik+Bubbles&display=swap');

body {
    background-color: cornflowerblue;
    font-family: 'Rubik Bubbles', cursive;
    color: black;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#container {
    text-align: center;
    padding: 20px;
}

.lirik {
    font-size: 36px;
    animation: fadein 1s ease forwards;
    white-space: pre-wrap;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
audio {
    display: none;
}

.emoji {
  position: absolute;
  top: -50px;
  z-index: 0;
  font-size: 32px;
  animation: fall linear infinite;
  pointer-events: none;
}

@keyframes fall {
  to {
    transform: translateY(110vh);
  }
}

.watermark {
  position: fixed;
  top: 80%;
  left: -100%;
  font-size: 20px;
  opacity: 0.4;
  color: khaki;
  white-space: nowrap;
  animation: jalanKanan 15s linear forwards, glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.5;}
    to { opacity: 1 ;}
}

@keyframes jalanKanan {
  to {
    left: 100%;
  }
}