        html, body {
            cursor: url("cursor.ico"), default;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
  font-family: "Verdana", Sans-Serif;
            font-style: normal;
            font-weight: 100;
            background-color: #e6f3ff;
            background-size: 120px 120px;
            background-position: 0 0, 0 60px, 60px -60px, -60px 0px;
            animation: moveBackground 5s linear infinite;
        }


        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            min-height: 100vh;
        }

        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .logo {
            max-width: 400px;
            width: 100%;
            height: auto;
            margin-bottom: 20px;
        }
b {
    font-weight: 900;
}
        .nav-link {
  display: block;
            margin-top: 10px;
            color: #4285f4;
            font-size: 16px;
text-decoration: underline wavy #4285f4;
  text-align: center;
  margin-bottom: 30px;
    font-weight: bold;
        }

        .blog-link {
            color: black;
  text-decoration: none;
        }


        .blog-link:hover {
            color: #4285f4;
            font-size: 16px;
text-decoration: underline wavy #4285f4;

        }

        .blog-link :visited :hover {

            color: #4285f4;
            font-size: 16px;
text-decoration: underline wavy #4285f4;

        }

        .blog-post {
            padding-top: 40px;
            padding-bottom: 40px;
            margin-bottom: 40px;
            background-color: white;
            border: 2px black solid;
        }


        .post-title {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000;
            text-align: center;
        }


                .link {
            color: #4285f4;
text-decoration: underline wavy #4285f4;

        }

.link:hover {
                font-size: 16px;

}
        h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000;
            text-align: center;
        }

        .post-content {
            font-size: 14px;
            line-height: 1.8;
            color: #000;
            padding: 40px;
            text-align: justify;
        }

        .post-date {
            text-align: center;
            font-size: 14px;
            color: #4B6BF9;
            margin-top: 20px;
            font-style: ;

        }

        i {
            color: #4B6BF9;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .blog-post {
                padding: 30px 20px;
            }

            .post-title {
                font-size: 22px;
            }

            .post-content {
                font-size: 13px;
            }
        }

        .section-header {
  padding: 10px;
  width: 100%;
  font-weight: bold;
  box-sizing: border-box;
}

.section-header.primary {
  background-color :#4b6bf9;
  color: white;
  font-size: 32px;
  border-bottom: 2px solid black;
  border-top: 2px solid black;

}

.section-header.secondary {
  background-color: #e6f3ff;
  color: black;
  font-size: 24px;
  border-bottom: 2px solid black;
  border-top: 2px solid black;
}

.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
    padding: 15px;

}

.nav-button {
  background-color: #4b6bf9;
  color: white;
  border: 2px solid black;
  padding: 10px 20px;
  font-family: "Verdana", Sans-Serif;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.nav-button:hover {
  background-color: #3a54c7;
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 black;
}

.nav-button:active {
  transform: translateY(0);
  box-shadow: 1px 1px 0 black;
}