** start of undefined ** * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #002244;
  color: #ffffff;
}

.container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.title {
  text-align: center;
  padding: 10px 0;
  font-size: 2.3rem;
  margin-bottom: 17px;
}

.palindrome-div {
  width: min(100vw, 450px);
  min-height: 100px;
  border-radius: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 25px;
  margin: 10px 0;
  background-color: white;
  box-shadow: 0 6px 10px gold;
}

label {
  color: navy;
  padding: 5px;
  margin-top: 10px;
  margin-bottom: 2px;
  font-size: 15px;
  font-family: Times new Roman, Algerian, sans-serif;
}

.palindrome-btn {
  width: 90px;
  border: none;
  padding: 10px;
  border-radius: 15px;
  background-color: navy;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-family: Algerian, sans-serif;
}

.palindrome-input {
  height: 40px;
  width: 245px;
  text-align: center;
  font-size: 1.2rem;
  margin: 10px;
  border: none;
  border-bottom: 3px solid navy;
  border-right: 2px solid navy;
  background-color: AliceBlue;
}

.palindrome-input:focus {
  border-bottom: 3px solid navy;
}

.palindrome-input::placeholder {
  text-align: center;
}

.user-input {
  font-size: 1.4rem;
  margin-top: 10px;
  text-align: center;
}

.results-div {
  overflow-y: auto;
  word-wrap: break-word;
  min-height: 50px;
  color: black;
}

.hidden {
  display: none;
}

.palindrome-definition-div {
  width: min(100vw, 450px);
  font-size: 1.3rem;
  min-height: 140px;
  box-shadow: 4px 3px red, 0.2em 0 0.7em;
  color: navy;
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.palindrome-definition {
  vertical-align: middle;
  text-align: center;
}
