body {
  background-size: cover;
  background-repeat: no-repeat;
  --nav-height: 114px;
}

.ui.nav.menu {
  min-height: var(--nav-height);
  height: fit-content();
  background-color: #657153;
}

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#content {
  margin-top: calc(var(--nav-height) + 1em);
  /* margin-bottom: 11em; */
  padding-bottom: 11em;
}

#top-logo {
  width: clamp(30px, 3vw, 60px) !important;
  border-radius: 4px 10px 4px;
  transition: all 0.2s ease-in-out;
}

/* #iframe {  position: absolute; float: left; clear: both; width: 100%; height: 350px; z-index: 0; } */

.grower:hover {
  transform: scale(1.1);
}

@media screen and (min-width: 0) and (max-width: 400px) {
  #my-content { display: block; }  /* show it on small screens */
}

@media screen and (min-width: 401px) and (max-width: 1024px) {
  #my-content { display: none; }   /* hide it elsewhere */
}

.hl {
  display: inline-block;
  position: relative;
  color: #657153;
}

strong {
  position: relative;
}

strong::before {
  /* Highlight color */
  background-color: #c6e9af;
  content: "";
  position: absolute;
  width: calc(100% + 10px);
  height: 110%;
  left: -5px;
  bottom: 0;
  z-index: -1;
  transform: rotate(-2deg);
}

.hl::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #657153;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hl:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.ui.table > thead > tr > th {
  background-color: #85c2ff;
}

.ui[class*="column"].grid > .column:not(.row),
.ui[class*="column"].grid > .row > .column {
  display: flex;
  align-items: center;
}

body > div.header > div > div > div.ui.borderless.icon.menu {
  background-color: white;
}
