*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family: 'poppins', sans-serif;
	font-size: 18px;
}
body{
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #003b5b;
}
.container{
	width: 100%;
	height: 200vh;
	padding: 30px;
    margin: auto;
	border: 1px solid #eeeeee;
	border-radius: 10px;
	background-color: #003b5b;
	display: flex;
	flex-direction: column;
	justify-content: center;
	vertical-align: center;
	text-align: center;
}



h4{
	margin-bottom: 10px;
	margin-top: 10px;
	font-size: 50px;
	color: white;
	text-align: center;
}
input{
	width: 100%;
	padding: 10px;
	margin-bottom: 50px;
	font-size: 50px;

}
textarea{
	width: 100%;
	padding: 10px;
	background-color: #ffffff;
	font-size: 40px;
}
#submit{
	border: none;
	background-color: orangered;
	color: white;
	width: 250px;
	height: 100px;
	margin-top: 30px;
	border-radius: 5px;
	font-size: 50px;
	
}
#submit:hover{
	background-color: #333333;
}

#name-input {
	background-color: #ffffff;
}