.dropdown:hover .dropdown-menu {
  display: block;
  color: gray;
}

.board-item {
  position: relative;
  background-color: white;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 300px;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 2;
}

.board-item img:first-child {
  width: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.board-container {
  gap: 15px;
}

.board-item-title {
  position: absolute;
  left: 10px;
  top: 5px;
  color: var(--bs-warning-bg-subtle);
  text-shadow: 1px 1px 3px black;
}

a:hover span {
  color: orange;
}

a:link, a:active {
  color: navy;
}

.three-column-info {
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 50px;
  gap: 15px;
  width: 100%;
}

.three-column-info-item {
  /*background-color: darkseagreen;*/
  width: 40%;
}

.single-link:active, .single-link:link, .single-link:visited {
  color: rgb(33,37,41);
  text-decoration: none;
}

.single-link:hover {
  color: orange;
}

.link-div {
  /*background-color: lightgreen;*/
  flex-grow: 1;
  flex-shrink: 1;
}

