* {
  background-color: rgb(80, 16, 16);
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
main {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

img {
  
  height: 20px;
  
}

#image {
  text-align: center;
  margin-top: 100px;
}

#question {
  text-align: center;
  color: white;
  font-weight: bold;
  font-size:40px;
}


#textBox {
  width: min(100vw, 450px);
  min-height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
  margin: 0px 0px;
  background-color: white;
  box-shadow: rgb(0, 46, 173) 0px 6px 6px;
  flex-direction: column;
}

#labelTextBox {
  background-color: white;
}

#text-input {
  background-color:white;
  height: 30px;
  width: 250px;
  text-align: center;
  font-size: 1.2rem;
  margin: 10px;
  border-width: medium medium 2px;
  border-style: none none solid;
  border-color: currentcolor currentcolor rgb(90, 1, 167);
  border-image: none;

}

#check-btn {
  width: 90px;
  border: medium;
  padding: 10px;
  border-radius: 15px;
  background-color: rgb(90, 1, 167);
  color: rgb(255, 255, 255);
  cursor: pointer;
}

#definitionBox {
  width: min(100vw, 450px);
  font-size: 1.3rem;
  min-height: 140px;
  background-color: rgb(0, 71, 27);
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
#definitionP, #definitionSpan {
  color: white;
  background-color: rgb(0, 71, 27);
  text-align: center;
  vertical-align: middle;
}

#result {
  color: white;
  background-color: white;
  
}

