body {
    background-color: GainsBoro;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    color: black;
    }

article.col1000  {
    width: 600px;
    margin: auto;
    }


h1 {
    font-size: 16px;
    font-style: italic;
    text-align: center;
    }

h2 {
    font-size: 20px;
    text-align: center;
    }

p.caption {
    width: 350px;
    margin: auto;
    font-style: italic;
}

.center {
    display: block;
    margin: auto
    }

p.align-center{
    text-align: center;
}

  .navbar {
      display: flex;
      position: sticky;
      align-items: center;
      /*justify-content: space-between;*/
      justify-content: center;
      top: 0px;
      /*background: rgb(255 127 39);*/
      background: DarkGray;
      background-blend-mode: darken;
      background-size: cover;
      color: white;
      padding: 10px 20px;
  }

  .nav-list {
      display: flex;
    list-style: none;
    text-align: center;
}

.nav-list li {
    margin-right: 20px;
}

.nav-list li:last-child {
    margin-right: 0;
}

.nav-list li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.nav-list li a:hover {
    color: #ffd700;
    /* Change the color on hover */
}

