#hi{
  width: 400px;
}
#info{
  position: relative;
  top:345px;
  right: 400px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: #e9e9e9;
}
body {
  font-size: 20px;
}
.main {
  display: flex;
  justify-content: center;
  padding-top: 40px;
  height: 850px;
}
#image{
  position: relative;
  right: 10px;
  z-index: 90;
}
#convert{
  position: absolute;
  width: 40px;
  height: 40px;
  font-size: 20px;
  border: 3px solid #8f8f8f;
  border-radius: 15%;
}
#result{
  border-radius: 0px 0px 40px 0px;
}
#result:hover {
  background: rgb(102, 243, 102);
}
#radix{
  border-radius: 0px 0px 0px 40px;
}
.calc {
  position: relative;
  bottom: 15px;
  right: 442px;
  width: 385px;
  padding: 30px;
  border-radius: 6px;
  z-index: 95;
}
.calc-display-input {
  width: 340px;
  height: 60px;
  margin: 188px 0px 70px 10px;
  border-radius: 6px;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  text-align: right;
  font-size: 35px;
  padding: 10px;
}
.calc_button-row td {
  margin: 0 auto;
  padding: 5px;
}
.btn {
  border-radius: 0%;
  border: 2px solid  #e9e9e9;
  box-shadow: 0px 0px 0px 0px #e9e9e9;
  width: 90px;
  height: 90px;
  background-color: #e9e9e9;
  font-size: 35px;
  color: #666666;
  padding: 0;
  cursor: pointer;
  transition: 0.5s all;
}
.btn-hover-red:hover {
  background-color: #d83e33;
  color: #f2f2f2;
}
.btn-hover-orange:hover {
  background-color: #E7D3FF;
  color: #000000;
}
.btn-hover-green:hover {
  background-color: #a68dc4;
  color: #f2f2f2;
}
.btn:active {
  transform: translateY(1px);
}
input,
button {
  border: 0;
  outline: 0;
  border-radius: 4px;
}
button {
  margin-left: 0;
}
.calc-display{
  height: 343px;
  width: 375px;
}