body{
	font-family: "Audiowide", sans-serif;
	background-color: black;
}

  
.requiredCol {
    width: 2px;
    border: 2px solid rgb(15, 3, 3);
    margin: -2px;
}
#container{
	width: 1256px;
	height:555px;
	background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('bggg.jpg');
		
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#calculator{
	width: 460px;
	height: 520px;
	background: rgba(90, 92, 90, 0.3);
	margin: 0 auto;
	top: 20px;
	position: relative;
	border-radius: 5px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
}
#result{
	height: 120px;
}
#history{
	text-align: right;
	height: 20px;
	margin: 0 20px;
	padding-top: 20px;
	font-size: 15px;
	color: #919191;
}
#output{
	text-align: right;
	height: 60px;
	margin: 10px 20px;
	font-size: 30px;
}
#keyboard{
	height: 400px;
}
.operator, .number, .empty{
	width: 50px;
	height: 50px;
	margin: 15px;
	float: left;
	border-radius: 50%;
	border-width: 0;
	font-weight: bold;
	font-size: 15px;
}
.number, .empty{
	background-color: #eaedef;
}
.number, .operator{
	cursor: pointer;
}
.operator:active, .number:active{
	font-size: 13px;
}
.operator:focus, .number:focus, .empty:focus{
	outline: 0;
}
button:nth-child(4){
	font-size: 20px;
	background-color: #686969;
}
button:nth-child(8){
	font-size: 20px;
	background-color:#686969;
}
button:nth-child(12){
	font-size: 20px;
	background-color: #686969;
}
button:nth-child(16){
	font-size: 20px;
	background-color:#686969;
}
button:nth-child(20){
	font-size: 20px;
	background-color: #686969;
}