body {
	background-color: white;
}

#nav {
	color: #a4c7b8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
}

.button {
  text-align: center;
  width: 60px;
  height: 60px;
	background-color: #006ED5;
  border-radius: 50%;
  box-shadow: 3px 4px 2px;
  justify-content: center;
}

.plus {
	height: 140px;
  grid-column-start: 4;
  grid-row-start: 4;
	grid-row-end: 6;
  border-radius: 50px;
}

#btn-grid {
	display: grid;
  grid-template-columns: auto auto auto auto;
  grid-template-rows: auto auto auto auto auto;
  width: 95%;
  height: 100%;
  margin: auto;
  margin-top: 10px;
	grid-gap: 12px 12px;
  justify-content: center;
  align-items: center;
}

#display {
  display: flex;
  flex-direction: column;
  text-align: right;
	background-color: #006ED5;
  height: 90%;
  width: 95%;
  margin: auto;
  box-shadow: 2px 2px 5px #616161 inset;
  border-radius: 20px;
}

#display p {
	margin: 0;
  margin-right: 20px;
}

.input {
  flex: 1;
	color: #a4c7b8;
  font-family: 'Roboto', sans-serif;
  
}

.result {
	color: #a4c7b8; 
  font-size: 52px;
  font-family: 'Roboto', sans-serif;

}

.calc-body {
	height: 600px;
  width: 300px;
	background-color: #0004D5;
  box-shadow: 5px 5px 10px black;
  display: flex;
  align-items: center;
  border-radius: 20px;
  margin: auto;
  margin-top: 10%;
  padding: 10px;
}

.inner-grid {
  height: 90%;
	width: 100%;
  display: grid;
	grid-template-rows: 1fr 4fr 12fr;
}

.main-row {
	
}