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

* 
{
	margin: 0px;
	padding: 0px;
	font-family: 'Noto Sans JP', sans-serif;
}

body
{
	background-color: #2d2d30;
}

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

#title
{
	border: none;
}

div.questions
{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 20px;
	padding-bottom: 20px;
	border-bottom: solid 2px red;
}

input.button
{
	color: white;
	cursor: pointer;
	font-size: 30px;
	width: 300px;
	height: 50px;
	margin: 5px;
	border-radius: 25px;
	background-color: red;
	border: none;
	transition: all 500ms;
}

input.button:hover
{
	color: black;
	width: 350px;
	font-size: 35px;
}

p
{
	font-size: 20px;
	text-align: center;
	width: 400px;
	color: white;
	margin: 10px auto;
}


