body {
	font-family: Arial, sans-serif;
	//display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-color: #000000;
	margin: 0;
}
.calculator {
	width: 70%;
	background-color: #000000;
	padding: 20px;
}
.display {
	width: 100%;
	height: 50px;
	text-align: right;
	font-size: 1.5rem;
	padding: 10px;
	margin-bottom: 20px;
	border: none;
	background-color: #bbbbbb;
	border-radius: 8px;
	color: #000000;
}
.buttons {
	display: grid;
	grid-template-columns: repeat(5, 2fr);
	gap: 10px;
}
.button {
	background-color: #aa0000;
	border: none;
	font-size: 1.5rem;
	padding: 20px;
	cursor: pointer;
	border-radius: 10px;
	transition: background-color 0.3s, transform 0.2s;
	color: white;
}
.button:hover {
	background-color: #550000;
	transform: scale(1.1);
}
.button:active {
	transform: scale(0.95);
}
.button.clear {
	background-color: #606060;
}
.button.clear:hover {
	background-color: #202020;
}
.button.equal {
	background-color: #606060;
}
.button.equal:hover {
	background-color: #202020;
}
.button.operator {
	background-color: #ff0000;
}
.button.operator:hover {
	background-color: #aa0000;
}
.float-right-image {
  float: right;
  margin: 0 0 15px 15px; 
  width: 20%; 
}
