* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont,"raleway", "Segoe UI Emoji", "Segoe UI", Ubuntu, Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #24292e;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility
}

    /* General Styling for Header and Navigation */
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 3rem;
      padding-left: 5rem;
      background-color: #f8f9fa;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 1000;
    }
    @media only screen and (max-width: 820px) {
    .header {
        padding-left: 3rem;
    }
}

    /* Logo */
    .logo-container {
      max-width: 100px;
    }

    .logo {
      display: block;
      width: 100%;
      padding: .2rem;
      height: auto;
      border:blue solid 2px;
    }

    /* Menu Button (Hamburger Icon) */
    .menu-btn {
      background: none;
      border: none;
      display: none; /* Hidden by default (for larger screens) */
      cursor: pointer;
      padding: 0;
    }

    .menu-icon {
      width: 25px;
      height: 2px;
      background-color: #333;
      position: relative;
      display: block;
      transition: 0.3s ease-in-out;
    }

    .menu-icon::before,
    .menu-icon::after {
      content: '';
      width: 25px;
      height: 2px;
      background-color: #333;
      position: absolute;
      left: 0;
      transition: 0.3s ease-in-out;
    }

    .menu-icon::before {
      top: -8px;
    }

    .menu-icon::after {
      top: 8px;
    }

    /* Menu Icon active state (cross icon) */
    .menu-btn.active .menu-icon {
      background-color: transparent;
    }

    .menu-btn.active .menu-icon::before {
      transform: rotate(45deg);
      top: 0;
    }

    .menu-btn.active .menu-icon::after {
      transform: rotate(-45deg);
      top: 0;
    }

    .nav {
      display: flex;
      align-items: center;
    }

    .nav-list {
      list-style-type: none;
      display: flex;
      gap: 0.95rem;
      padding: 0;
      margin: 0;
    }

    .nav-list li {
      position: relative;
    }

    .nav-list a {
      text-decoration: none;
      font-weight: 500;
      color: #333;
      font-family: system-ui;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .nav-list a:hover {
      background-color: #1a1ad2;
      color: white;
      text-decoration:none;
    }

    .active-link {
      color: #1a1ad2;
    }

    @media (max-width: 768px) {
      .nav-list {
        display: none;
        flex-direction: column;
        gap: 1rem;
        padding: 0;
      }

      .menu-btn {
        display: block;
      }

.nav {
    position: fixed;
    top: 94px;
    right: -250px;
    width: 210px;
    background-color: #e0f7fa;
    box-shadow: -4px 0px 12px rgba(0, 0, 0, 0.3);
    border-radius: 10px 0 0 10px;
    padding-inline: 1rem;
    padding-top: 1rem;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Active state for the mobile menu */
.nav.active {
  right: 0; /* Slide into view */
}

/* Navigation List */
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Each navigation item */
.nav-list li {
  margin-bottom: 1rem;
}

/* Links within the navigation */
.nav-list a {
  display: block;
  padding: 0.75rem 1rem;
  background-color: #ffffff; /* White background for the links */
  color: #333;
  border-radius: 5px; /* Rounded corners for each link */
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for the links */
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s ease-in-out;
}

.nav-list a:hover {
  background-color: #1a1ad2;
  color: #ffffff;
}


    /* Static body when menu is active */
    body.menu-open {
      overflow: hidden;
    }
}

 /*Footer*/

footer {
    padding: 1.6rem 0;
    margin-top: 1rem;
    text-align: center;
    background: linear-gradient(to right, #5d666c, #1f2a37);
    color: #a6a6a6
}

footer a {
    text-decoration: none;
    display: block;
    color: #fff
}

@media screen and (min-width: 64em) {
    footer {
        font-size:1rem
    }
}

@media screen and (max-width: 42em) {
    footer {
        font-size:.9rem
    }
}

p{
    font-weight:300;
    font-family:"raleway";
}

h1 {
    font-weight: 700;
}

a {
    color: #df1e1e;
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

h2{
    font-weight: 300;
    font-size: 28px;
}

.app-btn{
    font-weight: 600;
    margin: 1em 0
}
h3,h4,h5,h6 {
    font-weight: 300;
    margin: 1em 0
}

img {
    border-style: none;
    width: auto;
    margin: 0 auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

pre {
    background: #eee;
    font-family: monospace,monospace;
    font-size: 1rem
}


.wrapper {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto
}

.left {
    float: left
}

.right {
    float: right
}

.content {
    word-wrap: break-word
}

@media screen and (min-width: 64em) {
    .content {
        padding: 2rem 12rem;
        margin: 0 auto;
        font-size: 1.1rem
    }
}

@media screen and (min-width: 42em) and (max-width: 64em) {
    .content {
        padding:2em 5rem;
        font-size: 1.1rem
    }
}

@media screen and (max-width: 42em) {
    .content {
        padding:2rem;
        font-size: 1rem
    }
}

.content img {
    max-width: 100%
}
.content h2{
    margin-top: 2rem;
    margin-bottom: .5rem;
    font-weight: 600;
    font-size: 2.6rem
}

.content h1,.content h3,.content h4,.content h5,.content h6 {
    margin-top: 2rem;
    margin-bottom: .5rem;
    font-weight: 700;
    font-size: 1.6rem
}

.content p {
    margin-bottom: 1em;
    line-height: 1.7
}

.content code {
    padding: 2px 4px;
    font-family: Consolas,"Liberation Mono",Menlo,Courier,monospace;
    font-size: .9rem;
    color: #276F86;
    background: #e9f0f0;
    border-radius: .3rem
}

.content pre {
    padding: .8rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font: 1rem Consolas,"Liberation Mono",Menlo,Courier,monospace;
    color: #2d7091;
    word-wrap: normal;
    background: #ebf7fd;
    border: solid 1px rgba(45,112,145,.3);
    border-radius: .3rem
}

.content pre > code {
    padding: 0;
    margin: 0;
    font-size: .9rem;
    color: #567482;
    word-break: normal;
    white-space: pre;
    background: transparent;
    border: 0
}

.content .highlight {
    margin-bottom: 1rem
}

.content .highlight pre {
    margin-bottom: 0;
    word-break: normal
}

.content .highlight pre,.content pre {
    padding: .8rem;
    overflow: auto;
    font-size: .9rem;
    line-height: 1.45;
    border-radius: .3rem;
    -webkit-overflow-scrolling: touch
}

.content pre code,.content pre tt {
    display: inline;
    max-width: initial;
    padding: 0;
    margin: 0;
    overflow: initial;
    line-height: inherit;
    word-wrap: normal;
    background-color: transparent;
    border: 0
}

.content pre code:before,.content pre code:after,.content pre tt:before,.content pre tt:after {
    content: normal
}

.content ul,.content ol {
    margin-top: 0
}

.content ul li,.content ol li {
    margin: 10px 0
}

.content blockquote {
    background: #fafafa;
    padding: 1rem;
    margin-left: 0;
    margin-right: 0;
    color: #819198;
    border-left: .35rem solid #348efb
}

.content blockquote > :first-child {
    margin-top: 0
}

.content blockquote > :last-child {
    margin-bottom: 0
}

.content table {
    width: 100%;
    overflow: auto;
    word-break: normal;
    word-break: keep-all;
    -webkit-overflow-scrolling: touch;
    border-spacing: 0;
    border-collapse: collapse
}

.content table th {
    font-weight: 700;
    background: #f9fafb
}

.content table th,.content table td {
    padding: .5rem 1rem;
    width: 33.3333%;
    border: 1px solid #e4e5e5
}

.content table td:not(:first-child) {
    text-align: center
}

.content hr {
    height: 1px;
    padding: 0;
    margin: 2rem 0;
    background: #eaecef;
    border: 0
}
.main {
    text-align:center;
}

.blog-header {
    color: #fff;
    text-align: center;
    background: -webkit-linear-gradient(to right, #5d666c, #1f2a37);
    background: linear-gradient(to right, #5d666c, #1f2a37);
}

@media screen and (min-width: 64em) {
    .blog-header {
        font-size: 30px;
        padding: 1rem;
    }
}

@media screen and (min-width: 42em) and (max-width: 64em) {
    .blog-header {
        padding:3rem 4rem
    }
}

@media screen and (max-width: 42em) {
    .blog-header {
        padding:2rem 1rem
    }
}

@media screen and (min-width: 64em) {
    table i {
        width:34px
    }

    .content table td {
        font-size: 1rem
    }
}

@media screen and (min-width: 42em) and (max-width: 64em) {
    .content table td {
        font-size:1.1rem
    }

    table i {
        display: none
    }
}

@media screen and (max-width: 42em) {
    .content table td {
        font-size:.9rem;
        padding: .5rem
    }

    table i {
        display: none
    }
}


