body,
html {
  height: 100%;
  overflow-x: hidden;
}
/* Footer menu styling */
.footer-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
/* Hide footer when scrolled up */
.footer-menu.hide {
  transform: translateY(100%);
}
.menu-item {
  text-align: center;
  width: 30%;
  padding-top: 5px;
  background: #298be4;
  color: #f3f3f3;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.menu-item:hover {
  background-color: #d2324c;
}
.menu-item p {
  font-size: 14px;
  font-weight: 600;
}
.menu-item i {
  font-size: 1.5em;
}

.details {
  background-color: beige;
}

.word-details {
  margin-top: 10px;
  background-color: #d3334c;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.word-details p {
  text-align: center;
  margin-top: -10px;
  font-style: italic;
  color: #f3f3f3;
}
#soundIcon {
  font-size: 25px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.word-description {
  background-color: #e7ebf0;
  padding-bottom: 30px;
}
.word-description-title {
  padding-top: 20px;
  padding-left: 20px;
  font-weight: 700;
}
.word-description-sub-title {
  padding-left: 20px;
}
.word-description-sub-title-meaning {
  padding-left: 5px;
  font-size: 13px;
  color: #001122;
}
.footer {
  background-color: #d3334c;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
}
.form {
  background-color: #f0edfe;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}
