@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;
}

body
{
	background-color: #2d2d30;
	color: white;
}

#game-message
{
	margin-top: 10px;
	font-size: 55px;
	border-bottom: solid red 2px;
	text-align: center;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

#info
{
	text-align: center;
}

#score
{
	padding-left: 20px;
}

.hide { display: none; }

.show { display: block; }

#game-image { height: 220px; }

form { padding-left: 20px; }

input
{
	margin-bottom: 20px;
	width: 200px;
	border-radius: 25px;
	font-size: 20px;
	height: 50px;
}

#user-guess
{
	padding-left: 10px;
	height: 25px;
	border: solid red 2px;
	height: 55px;
}

#submit-guess, #play-again
{
	border: none;
	background-color: red;
	color: white;
	cursor: pointer;
	transition: 500ms all;
}

#submit-guess:hover, #play-again:hover
{
	color: black;
	transform: rotate(10deg);
}
