.intro-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px #ccc;
  padding: 20px;


}

.intro-image {
  max-width: 40%;
  height: auto;
}

.word-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  max-width: 500px;
}

.word-label {
  font-size: 1.5rem;
  margin-right: 10px;
}


.word-input {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  font-size: 1.2rem;
  border: 2px solid #ccc;
  border-radius: 5px;
  margin-right: 20px;
  margin-bottom: 20px;
}


.word-input::placeholder {
  color: #999;
}

.word-button {
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: #008CBA;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.word-button:hover {
  background-color: #005F6B;
}

/* add some margin between the input field and button */
.word-input {
  margin-right: 0;
}

.word-button {
  margin-left: 10px;
}
