body {
    font-family: Arial, sans-serif;
    margin: 10px;
    background-color: cornsilk;
    color: #333333;
}

h1, h2 {
    text-align: center;
    padding-top: 1%;
}

nav {
    align-items: center;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #333333;
  text-align: center;
}

ul li {
  display: inline-block;
  font-size: 24px;
}

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

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

footer {
  text-align: center;
  background-image: url('images/footer.png');
  color: white;
  border: 5px solid black;
}

/* table formatting */
table {
    margin:auto;
    border: 5px solid green;
    width: 100%;
    border-spacing: 0;
    text-align: center;
}
td, th {
    border-style: none;
    padding: 0.5em;
    width:auto;
}
tfoot td {
    font-size: 9px;
    font-style: italic;
    text-align: center;
}
tr:nth-of-type(even) {
    background-color: #eaeaea;
}
thead:first-of-type {
    background-color: green;
    color: #FFF;
}

/* caption tag */
caption {
    font-family: Impact, "Franklin Gothic Bold", "Arial Black", "sans-serif";
    font-weight: bold;
    font-size: 1.75em;
    padding-bottom: 0.5em;
}

p, div {
    padding: 20px;
    line-height: 1.5em;
}

.banner {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.equipment-images {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: 20px;
}

img {
  width: 100%;
}

/* CSS Validation: https://jigsaw.w3.org/css-validator/validator?uri=https%3A%2F%2Fjacobsj168.macombserver.net%2Fitwp1000%2Fproject1%2Fstyle.css&profile=css3svg&usermedium=all&warning=1&vextwarning=&lang=en */