  @import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');
  *{
    /* font-family:Georgia, 'Times New Roman', Times, serif; */
  }
  :root {
            --deep-ocean: #006895;
            --ocean-blue: #0799ba;
            --turquoise: #1fa5b0;
            --seafoam: #8ec1b8;
            --sand: #dfdcd3;
        }

        .ckeditor-content {
    font-family: "Helvetica", "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
}

.ckeditor-content h1,
.ckeditor-content h2,
.ckeditor-content h3 {
    font-weight: bold;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.ckeditor-content p {
    margin-bottom: 1em;
}

.ckeditor-content ul,
.ckeditor-content ol {
    padding-left: 2em;
    margin-bottom: 1em;
}

/* Lists */
.ckeditor-content ul,
.ckeditor-content ol {
    padding-left: 2em;
    margin-bottom: 1em;
}

.ckeditor-content ul li {
    list-style-type: disc;
    margin-bottom: 0.5em;
}

.ckeditor-content ol li {
    list-style-type: decimal;
    margin-bottom: 0.5em;
}


.ckeditor-content blockquote {
    border-left: 4px solid #ddd;
    padding-left: 1em;
    color: #666;
    font-style: italic;
}

.ckeditor-content img {
    max-width: 100%;
    height: auto;
    margin: 1em 0;
    border-radius: 6px;
}


/* Tables */
.ckeditor-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 0.95rem;
}

.ckeditor-content table th,
.ckeditor-content table td {
    border: 1px solid #ccc;
    padding: 0.75em;
    text-align: left;
}

.ckeditor-content table th {
    background-color: #f7f7f7;
    font-weight: bold;
}

.cke {
    z-index: 10 !important;
}
.cke_dialog,
.cke_reset_all {
    z-index: 99999 !important;
}


/* ========================== */

/* Background slideshow */
.hero-bg {
  animation: changeBg 20s infinite ease-in-out;
  background-image: url("/image/boat.jpg");
}

@keyframes changeBg {
   0% {
    background-image: url("/image/boat.jpg");
  }
  20% {
    background-image: url("/image/boat2.jpg");
  }

  40% {
    background-image: url("/image/bg.jpg");
  }
  60% {
    background-image: url("/image/aboutbg.jpg");
  }
  80% {
    background-image: url("/image/storybggg.jpg");
  }
  100% {
    background-image: url("/image/boat.jpg");
  }
}
 