html,body{
	width:100%;
	height:100%;
	margin:0;
	padding:10px auto;
	font-family: cursive, 'Noto Serif', serif;
	background:#fc34c0;

}
*{
	box-sizing:border-box;
	font: bold cursive, Arial, sans-serif;
}

.h1{
	position: relative;
	max-width: 290px;
	text-align:center;
	margin:auto auto;
	margin-bottom: 50px;
	background:#201d4b;
	color:rgb(243, 208, 208);
	margin-top:0;
	padding:10px;
	border-radius: 12px;
	
}

.main-div{
	 position:relative;	 
	 width:290px;
	 margin:auto auto;
	 background:#0e1f49;
	 height:400px;
	 box-shadow:inset 2px -2px 2px gray;
	 padding:15px;
	 border-bottom:5px solid #c51129;
     border-radius:6px;	
}

.number-div{
	  padding:0;
	  margin:0;
}

.screen{
	list-style:none;
	color:rgb(17, 6, 78);
	height:10vh;
	width:58px;
	padding-right:8px;
	border: 1px solid rgb(212, 109, 118);
	border-radius:4px;
	text-align:right;
	font-weight:bold;
	font-family: cursive, 'arial', sans-serif;
	margin-bottom:8px;
    width:182px;
	background:#8eacec;
    border-top:3px solid #ED586C;
	overflow: hidden scroll;
	word-wrap: break-word;
	transition: all .3s ease-in;
}
.screen:hover{
	background-color: rgb(105, 243, 77);
}
	.clear{
	width:45px;
	height:10vh;
	background:#7B8D8E;
	padding:auto auto;
	position:absolute;
	border-radius:3px;
	left:215px;
	top:18px;
	color:rgb(235, 42, 8);
	text-shadow: 3px 3px 3px rgb(203, 203, 248);
	cursor:pointer;
	text-align:center;
	vertical-align: middle;
	font-weight: 700;
	font-size: xx-large;
	box-shadow: 3px 3px 2px rgb(203, 203, 248);
	transition: all .3s ease-in;


}
.clear:hover{
	background:#948774;
	box-shadow:3px 3px 2px rgb(203, 203, 248);
}

.clear:active{
	box-shadow:inset 3px 3px 2px  rgb(63, 63, 129);
}

.number-div li{
	list-style:none;
	float:left;
    width:52px;
    background:white;
	margin:9px 5px;
	padding:10px;
	border-bottom:4px solid #828A9B;
	border-radius:5px;
	color:#1b1b1b;
	text-align:center;
	cursor:pointer;
	box-shadow:3px 3px 2px rgb(203, 203, 248),
	           3px 3px 2px rgb(63, 63, 129);
}

.number-div li:hover{
	background: #44B3C2;
	border-bottom: 4px solid #336699;
	color: white;
	box-shadow:3px 3px 2px rgb(203, 203, 248),
	           3px 3px 2px rgb(63, 63, 129);
}

.number-div li:active{
	box-shadow:inset 3px 3px 2px rgb(203, 203, 248),
        	         3px 3px 2px rgb(63, 63, 129);
}

	#equals{
	background:#F43341;
	color:white;
}

#equals:hover{
	background: #FE5E6A;
	border-bottom: 4px solid #B3232E;
	color: white;
}
