@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap');

* 
{
	padding: 0px; 
	margin: 0px;
	font-family: 'Noto Sans JP', sans-serif;
	color: white;
	box-sizing: border-box;
}

body
{
	background-color: #2d2d30;
}

h1
{
	font-size: 55px;
	text-align: center;
	margin-top: 20px;
	border-bottom: solid red 2px;
}

label, input
{
	margin: 10px;
}

input
{
	background-color: #2d2d30;
	border-radius: 25px;
}

#submit
{
	cursor: pointer;
	border: none;
	background-color: red;
	border-radius: 25px;
	font-size: 18px;
	display: block;
	padding: 16px;
	transition: all 500ms;
}

#submit:hover
{
	color: black;
}

p
{
	margin-top: 30px;
	font-size: 60px;
	position: relative;
	width: 1000px;
	left: -1000px;
	animation: myMove 3s forwards;
	text-align: center;
}

@keyframes myMove 
{
	from {left: -1000px;}
	to {left: 50%; margin-left: -500px;}
}
