ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* background-color: #333333; */
}

ul li {
  float: left;
}

ul li a {
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover {
  background-color: #111111 ;
  color: white;
}

header {
  background-color: white;
  color: black;
  /* justify-content: center; */
  /* text-align: center; */
}

main {
  background-color: white;
}
/* 
main.cfm {
  width:50%;
} */

div.cfm {
  margin:auto;
}

body {
    background-color: white;
    font-family:  "Cascadia code", monospace;
    color: black;
}

div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* margin-top: 80px; */
  /* margin-bottom: 50px; */
  background-color: white;

}

div.gallery-item {
  margin: 10px;
  /* border: 1px solid #ccc; */
  /* width: 180px; */
}

p {
    color: black;
    text-align: center;
    margin: 0 auto;
    padding: 1rem;
    /* width: 10%; */
}

/* p.cfm {
  width:50%;
} */

h1 {
    color: black;
    text-align: center;
}

h2 {
  margin-left: 2rem;
  text-decoration: underline;
}

.gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center; /* Centers the figures horizontally */
      padding: 20px;
    }

    figure {
      margin: 0;
      width: 300px;
      display: flex;
      flex-direction: column;
      align-items: center; /* Centers caption under the image */
      text-align: center; /* Ensures text inside figcaption is centered */
    }

    figure img {
      width: 300px;
      height: auto;
      display: block;
    }

    figcaption {
      margin-top: 8px;
      font-size: 0.9em;
      color: #333;
    }

table {
  border: solid black 1px;
  margin-left: auto;
  margin-right: auto;

}

td {
  padding: 20px;
  text-align: center;

}

h3 {
  text-align: center;
}
    



