

    body {
      margin: 0;
      font-family: 'Quicksand', sans-serif;
      background-color: #edecec;
    }

    /* Header */
    header {
      background-color: #ebbce2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
    }

    header h1 {
      font-family: 'Fredoka', sans-serif;
      color: #fc58bb;;
      margin: 0;
      font-size: 40px;
    }

    nav {
      background: #eeeeee;
      padding: 10px 20px;
      border-radius: 5px;
    }

    nav a {
      text-decoration: underline;
      color: black;
      margin: 0 10px;
      font-size: 18px;
    font-family: 'Fredoka', sans-serif;  
    }

    nav a:first-child {
      color: #fc58bb;
    }

    /* Main Section */
    .main {
      display: flex;
      justify-content: space-between;
      padding: 40px;
    }

    .content {
      max-width: 60%;
    }

    h2 {
      font-family: 'Fredoka', sans-serif;  
      color: #fc58bb;
      font-size: 80px;
      margin-bottom: 20px;
      margin-top: 10px;
    }

    /* Intro Box */
    .intro-box {
      background-color: #ebbce2;
      padding: 25px;
      border-radius: 25px;
      border: 4px solid #fc58bb;;
      font-size: 25px;
      padding-bottom: 50px;
      font-family: 'Fredoka', sans-serif;
    }

    /* Image */
    .image img {
      width: 300px;
      border-radius: 5px;
      height: 400px;
      margin-right: 75px;
    }

    /* Footer */
    footer {
      background-color: #ebbce2;
      height: 150px;
      margin-top: 100px;
    }

    
