body {
  background-image: repeating-linear-gradient(
    135deg,
    #f5fcff 0 20px,
    #e8f8ff 20px 40px
  );
  margin: 0;
  font-family: "Fredoka", system-ui, sans-serif;   /* ⬅️ fun bubbly font */
}


#container {
  width: 600px;
  margin: 0 auto;
}


h1 {
  color: #56d0f7;
  font-family: "Fredoka", Verdana, sans-serif;     /* apply Fredoka here too */
  font-size: 2.5em;
  border: 3px solid #2bb4e0;
  padding: 10px;
  text-align: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.15);
}


p {
  font-family: "Fredoka", Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.4;
}

a {
  color: DarkOrchid;
  font-family: "Fredoka", sans-serif;
}


img,
video {
  width: 100%;
  height: auto;
  display: block;
}

.page {
  margin: 2rem 0;
  border: 3px solid #2bb4e0;
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}