 body {
      font-family: Fuzzy Bubbles;
      background-image: url('images/sky.jpg');
    background-size: cover;
    background-position: center;
      }
      
    img {
      display: block;
      margin: 0 auto;
    }
      
    h1 {
      font-family: "Jacquard 12", system-ui;
      font-size: 60px;
      color: #5F288F;
      text-align: center;
      animation: slideIn 2s ease-in-out forwards;
    }
    
    h2 {
      font-family: Fuzzy Bubbles;
      font-size: 28px;
      text-align: center;
      color: #5F288F;
      text-decoration: underline;
    }
    
    .intro, .list {
  background-color: white;
  padding: 12px;
  border: 2px solid #5F288F;
  border-radius: 12px;
  margin: 12px auto;
  max-width: 450px;
}
    
    .jacquard-12-regular {
  font-family: "Jacquard 12", system-ui;
  font-weight: 400;
  font-style: normal;
}

.fuzzy-bubbles-regular {
  font-family: "Fuzzy Bubbles", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fuzzy-bubbles-bold {
  font-family: "Fuzzy Bubbles", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.list ul {
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


