html {
  padding: 10px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

body {
  background-color: antiquewhite;
}

body::-webkit-scrollbar,
body::-webkit-scrollbar-button {
  display: none;
  background: transparent;
}

a {
  color: #00B7FF;
}

.coltable {
  width: 30rem;
  font-size: 1rem;
  text-indent: 1rem;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  /* height: 100vmax; */
  background-color: whitesmoke;
}

.headrow {
  display: flex;
  flex-direction: row;
  font-weight: bold;
  border-bottom: 2px solid black;
  margin-bottom: 10px;
  width: 100%;
}

.row {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  width: 100%;
  /* font-size: 1rem; */
}

.row1 {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.row2 {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  row-gap: 1rem;
}

.col0 {
  display: flex;
  flex-direction: column;
  width: 10rem;
  align-items: center;

  img {
    max-width: 7rem;
    height: auto;
  }
}

.col1 {
  display: flex;
  flex-direction: column;
  width: 20rem;
  text-align: left;
}

.col2 {
  display: flex;
  flex-direction: column;
  width: 10rem;
  text-align: left;
}

.col3 {
  display: flex;
  flex-direction: column;
  width: 10rem;
  text-align: left;
}