html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #ebcc94 0%, #ebcc94 40%, rgba(207, 168, 99, 0.0) 100%);
  background-color: #ebcc94; /* fallback background color after gradient fades out */
}

#main {
  flex: 1; 
  padding: 1rem;
  text-align: center;
  margin: auto;
  width: 80%;
  padding: 10px;
}

a{
  color: inherit !important;
}
footer {
  background-color: #c49955;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}
/*
.topnav {
  display: block;
  background-color: #7e8580;
}

.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}


.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav input {
  float: right;
  display: block;
  color: black;
  text-align: left;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 14px;
  height: 100%;
}
*/
.hover-target {
  display: inline;
  position: relative;
  cursor: help;
  background: #ab9968;
}

.hover-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  background: #222;
  color: #fff;
  padding: 12px;
  max-width: 600px;              /* Wider box */
  width: max-content;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;           /* Allow multi-line text */
  z-index: 1000;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  font-size: 14px;
  line-height: 1.4;
}

/* Show on hover */
.hover-target:hover .hover-box {
  display: block;
}
