.CH {
  margin-left: 12px;
  padding: 4px;
}
.CH:hover,
.CH-C:hover {
  color: #ffff00;
  cursor: pointer;
}

.BH {
  margin-left: 12px;
  padding: 4px;
}
.BH:hover,
.BH-B:hover {
  color: #ffff00;
  cursor: pointer;
}

.nav {
  padding: 10px 20px;
  display: block;
  background-color: #005596;
  color: #fff;
  width: 24%;
  height: 100%;
  position: fixed;
  overflow: hidden;
  font-size: large;
}

.content {
  margin-left: 24%;
  padding: 10px 20px;
}

.active {
  color: #ffff00;
}

.active2 {
  color: #ffff00;
}

i {
  float: right;
}

@media screen and (max-width: 800px) {
  .nav {
    width: 100%;
    text-align: justify;
    height: auto;
    position: relative;
  }
}

#logo {
  width: 60%;
  height: *;
  /* width: 140px;
  height: 160px;
  position: relative;
  float: left;
  top: 0px;
  left: 20px; */
}

.Q {
  font-size: large;
}

.O {
  color: #005596;
}

#question {
  width: 240px;
  height: 100px;
}

#about {
  color: #fff;
  margin-top: 40px;
}
#about:hover {
  color: #ffff00;
}
#about:active {
  color: #ffff00;
}

.BH-B,
.CH-C {
  font-size: medium;
}

#thanksImg {
  width: 100%;
  height: 100%;
}

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
}

td {
  font-size: xx-large;
}

/* custom ordered-list */
ol {
  counter-reset: item;
}

ol li {
  display: block;
}

ol li::before {
  counter-increment: item;
  content: "(" counter(item, lower-alpha) ")  ";
}

