@font-face { 
    font-family: "Futura";
    font-style: normal;
    font-weight: 400;
    src: 
      url(../assets/Futura\ Book\ font.ttf) format("truetype");
}

nav {
    width: calc(100% - 70px);
    display: flex;
    justify-content: space-between;
    height: 80px;
    padding-top: 27px;
    padding-left: 35px;
    margin-bottom: 35px;
    top: 0px;
    background-color: white;
    z-index: 100;
    font-family: "Futura";
    font-size: 25px;
    font-weight: 1;
    color: black;
}

#logo {
    position: relative;
    text-shadow: 0.5px 0.5px 0 #000000;
    margin-left: 18.5px;
}



.nav-element:hover {
    color: darkgray;
    cursor: pointer;
}

.nav-element {
    position: static;
    margin-left: 15px;
    margin-right: 15px;
    height: 30px;
}

#pages {
    display: flex;
    margin-right: -16px;
}


.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"
}

img {
    display: block;
    margin: 0 auto;
}

.thumbnail {
    height: 128px;
    width: 128px;
    margin: auto 20px auto 20px;
}

.pixelated {
    image-rendering: pixelated;
}

.article_description {
    margin: 20px;
}

@media only screen and (min-width: 601px) {
    img {
      max-width: 600px; /* Set max-width for desktop */
      margin: 0 auto; /* Center align the container */
    }
    .datatable {
        width: 50%;
    }
  }
  
  /* For mobile */
  @media only screen and (max-width: 600px) {
    img {
      max-width: 93%; /* Set max-width to 100% for mobile */
      padding: 0 20px; /* Adjust padding or margin for mobile */
    }
  }

.datatable {
    margin: 0 auto; /* Center the table horizontally */
    font-size: 12px;
}




.datatable th, .datatable td {
    padding: .2em;
    text-align: left;
}
.datatable th {
    background-color: #f2f2f2;
}

[data-table-theme*=zebra] tbody tr:nth-of-type(odd) {
    background: rgba(0,0,0,.05);
}

.article-meta {
    display: flex;
    justify-content: space-between;
}

.article-info {
    display: flex;
    flex-direction: column;
    row-gap: -10px;
}

.author {
    text-align: left;
}

h2 {
    margin-top: 15px;
    margin-bottom: -10px;
}

h3 {
    margin-bottom: 5px;
}


.published-date {
    text-align: center;
}

a {
    color: black;
    text-decoration: none;
}

footer {
    height: 100px;
}

.article {
    display: flex;
    border: 1px gray;
    border-style: solid none;
    margin-bottom: -1px;
}

.readtime {
    color: rgb(100, 100, 100);
    font-size: 12px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 5px;
}

.gallery img {
    margin: 5px; /* Adjust the margin as needed */
}

.gallery div {
    margin: 30px;
}

.heading {
    margin-bottom: 80px;
}



.arrow-left {
    position: absolute;
    width: 33px;
    height: 33px;
    border: 2px solid #333;
    border-left: 0;
    border-top: 0;
  
    transform: rotate(135deg);

    margin-left: 40px;
    margin-top: 80px;
  }


  