@import url('https:/fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins',sans-serif;
}
body
{
	background: linear-gradient(45deg,#8500ff,#5acaff);
	height: 100vh;
}
#container
{
	position: absolute;
	/*top: 10%;
	left: 10%;
	right: 10%;
	bottom: 10%;
	border-radius: 20px;*/
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url('image/noodle.png'), #151729;
	box-shadow: 0 15px 30px rgba(0,0,0,.5);
}
#container .content
{
	/*max-width: 600px;*/
	max-width: 100%;
	text-align: center;
}
#container .content h2
{
	font-size: 8vw;
	color: #fff;
	line-height: 1.2em;
}
#container .content h4
{
	position: relative;
	font-size: 1.8em;
	margin-bottom: 20px;
	color: #111;
	background: #fff;
	font-weight: 500;
	padding: 10px 20px;
	display: inline-block;
	border-radius: 10px;
}
#container .content p
{
	color: #fff;
	font-size: 1.2em;
	line-height: 1.8em;
}
#container .content a
{
	position: relative;
	display: inline-block;
	padding: 10px 25px;
	background: #ff0562;
	color: #fff;
	text-decoration: none;
	margin-top: 25px;
	border-radius: 25px;
}