*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f2f8ff;
}
#container{
	height: 400px;
	width: 400px;
	padding: 20px;
	background-color: #fff;
	border: 1px solid #e2ebf4;
	position: relative;

}
#container h2{
	color: #1479ff;
	font-size: 50px;
	text-align: center;
}
#container h1{
	text-align: center;
	color: #1479ff;
	font-size: 110px;
	color: #3ddcef;
	padding: 20px;
}
#buttons{
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
#buttons button{
	margin: 20px;
	padding: 10px 20px;
	color: #fff;
	background-color: #1479ff;
	outline: none;
	border: none;
	cursor: pointer;
	font-size: 20px;
	border-radius: 10px;

}