@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
*{
	margin: 0;
	padding: 0;
	font-family: 'Nunito', sans-serif;
}
body{
	 background-color: #097069; /* 097069 292929 */
}
.calculator {
	width: 300px;
	height: 500px;
	background-color: #033536; /* 033536  082032 */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 7px;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
	text-align: center;
	padding: 20px 20px;
	
	
}
h2{
	color: white;
	margin-top: 20px;
	margin-bottom: 20px;
}

label {
	color: white;
	margin: 10px;
}

input {
	width: 250px;
	height: 30px;
	padding: 5px;
	margin: 10px;
	border: none;
	outline: none;
	border-radius: 7px;
}

button {
	font-size: 18px;
	width: 180px;
	height: 30px;
	border-radius: 7px;
	border: none;
	color: #FFF; /* F7B501 082032*/
	background-color: #F7B501;
	font-weight: 999;
	margin-top: 10px;
	transition-duration: 0.4s;
}

button:hover {
  background-color: #097069; /* Green */
  color: white;
  cursor:pointer;
}
p {
	color: white;
	margin-top: 20px;
}