body {
    font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
    color: #000;
}

.title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
  transform: capitalize;
}

h1 {
  font-size: 2em;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  font-size: 2em;
  text-align: center;
  text-transform: uppercase;
}

h3 {
  text-align: center;
}

table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
  min-width: 500px;
  margin: auto;
}

td:nth-of-type(1) {
  width: 40%;
  line-height: 22px;
}
td:nth-of-type(2) {
  width: 40%;
  line-height: 22px;
}
td:nth-of-type(3) {
  width: 20%;
  line-height: 22px;
}

.images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100dvh;
  justify-content: center;
  align-content: center;
  margin: 0 auto;
}

.images > img {
  max-height: 261px;
}

.navigation {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 20px;
  height: 50px;
  /* width: 100dvh; */
  justify-content: center;
  align-content: center;
}

.navigation a {
  justify-self: center;
  background-color: lightgreen;
  color: darkblue;

  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
}
