body {
	margin: 0;
	justify-content: center;
	align-items: center;
	padding: 2em;
	box-sizing: border-box;
	background-color: #ffff;
	font-family: 'Segoe UI', Roboto, sans-serif;
}
.ride-the-waves-gif {
  display: block;
  margin: 0 auto;
}

.question-form {
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: center; /* Vertically center content */
    text-align: center;
    max-width: 400px;
    width: 100%;}

	textarea[name="PhraseBox"] {
		height: 40vh;
		font-family: 'Segoe UI', Roboto, sans-serif, serif;
	    width: 60%;
		margin: auto;
		color: green;
		max-width: 900px;
		font-size: 2.5em;
		padding: 10px;
		resize: none;
		margin-left: 25vw;
		border: 2px solid #ccc;
		background-color: #f9f9f9;
		text-align: center;
	}
/* Button container to keep buttons centered */
.button-container {
    display: flex;
    justify-content: center;
	padding: 20px;
    align-items: center;
    width: 100%;
    margin: 10px;
}


input[type=text]::placeholder  {
	color: green;
}

input[type=text]  {
	width: 90%;
	height: 40vh;
	background-color: transparent;
/* 	max-width: 900px; */
	border: 2px solid red;
	border: none;
	outline: none;
	padding: 2em;
	text-align:center;
	color: green;
	font-size: 3.5em;
	font-weight: 500;
	font-family: 'Segoe UI', Roboto, sans-serif, serif;
}

input[type=button], input[type=reset]   {
	border: 1px solid green;
	border-radius: 5px;
	margin-left: 10px;
	padding: .5em;
	text-align:center;
	background-color: transparent;
	color: green;
	font-size: 1.3em;
	cursor: pointer;
}

input[type=button]:hover, input[type=reset]:hover {
	background-color: green;
	color: white;
	transition: all 400ms;
}