body {
  margin: 0;
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: rgba(113, 226, 43, 0.838);
  font-family: "Courier New", Courier, monospace;
}

.container {
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 28px;
  border-radius: 7px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  width: 90%;
  margin: 10px;
  max-width: 450px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
}

.heading {
  font-size: 1.8rem;
}

.input {
  position: relative;
  height: 53px;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  padding: 0 42px 0 15px;
  border-radius: 5px;
}

.search-input {
  position: relative;
}

.search-icon {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #000000;
}

.meaning-container {
  display: none;
}

/* Tablet screens */
@media only screen and (min-width: 768px) and (max-width: 1400px) {
  .container {
    max-width: 85%;
  }
  .input {
    width: 330px;
  }
}

/* Mobile screens */
@media only screen and (max-width: 767px) {
  .container {
    max-width: 80%;
  }
  .input {
    width: 200px;
  }
  .heading {
    font-size: 1.4rem;
  }
}
