body {
  height: 100vh;
  width: 100vw;
  background: linear-gradient(to left bottom, rgb(237, 237, 149), rgb(141, 141, 104), rgb(96, 96, 74)); /* rgb(141, 141, 104),*/
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
}

.container {
  /*background-color: rgba(108, 129, 77, 0.9);*/
  background: linear-gradient(to right top,  rgba(108, 129, 77, 0.9) 40%, rgba(169, 225, 85, 0.9),  rgba(108, 129, 77, 0.9) 80%);
  padding: 10px 30px;
  min-width: 350px;
  border-radius: 10px; 
  box-shadow: 4px 4px 15px 3px rgba(0,0,0,0.25); 
  display: flex;
  flex-direction: column;
  align-items: center;  
}

.currency-container {
  width: 90%;
  padding: 15px 5px;
  display: flex;
  justify-content: space-between;
}

.currency-container select {
 padding: 5px;
 box-shadow: inset 1px 1px 2px 1px rgba(19, 30, 18, 0.5);
 background-color: rgba(112, 146, 112, 0.5);
 border: none;
}

.currency-container input {
  width: 70%;
  padding: 5px 10px 5px 1px;
  font-size: 20px;
  text-align: right;
  box-shadow: inset 1px 1px 2px 1px rgba(19, 30, 18, 0.5);
  background-color: rgba(144, 191, 144, 0.5);
  border: none;  
  appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

p {
  font-size: 20px;
}

select:focus, input:focus {
  outline: none;
}