body { 
	margin:0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#calccontainer{
	background-color: lightyellow;
	border-radius: 10px;
}

#calculator {
	font-family: Arial, sans-serif;
	background color: yellow;
	border-radius: 15px;
	max-width: 800px;
	overflow: hidden;
	border-collapse: separate;
}


#display {
    background-color: white;
    color: black;
    text-align: left;
    font-size: 50px;
    border-width: 1px;
    border-color: gold;
    border-radius: 15px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

#buttons{
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 5px;
	padding 5px;
}

#buttons button{
	width: 100px;
	height: 100px:
	border: 0;
	border-radius: 20px;
	background-color: gold;
	color: white;
	font-size: 3rem;
	font-weight: bold;
	cursor: pointer;
	border-collapse: separate; 
}