body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
    animation: rainbow 10s infinite;
    font-family: Arial, sans-serif;
    text-align: center;
}

.margin {
    border-top: 10vh;
}

.margineyoutube {
    margin-top: 200vh;
    padding-bosdttom: 80vh;
}

h1 {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.rainbow-text {
    font-size: 2rem;
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
    -webkit-background-clip: text;
    color: transparent;
    animation: rainbow-text 5s infinite;
}


body {
  background-image: url('Flower background.avif');
 background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
}


@keyframes rainbow-text {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
p {
    font-size:180%;
    background-image: url('Flower text bubble.png');

  background-size: 100% 120%;
background-repeat: no-repeat;
}

.game-row {
  display: flex;
  justify-content: center; /* centers the whole row */
  align-items: center;
  gap: 40px; /* space between the images */
}

.cute-box {
  background-color: #ffe6f2; /* soft pink */
  border: 15px solid #ffb3da; /* thicker pastel border */
  border-radius: 30px; /* rounded corners */
  padding: 30px;
  margin: 30px auto;
  width: 90%;
  max-width: 1200px;


}