body {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background: #4c3047;
}

.container {
	background: lightgray;
	padding: 2em 6em;
	border-radius: 0.6em;
	box-shadow: 10px 5px 7px rgb(22, 22, 22, 0.3);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#messageinput {
	display: block;
	height: 30px;
	width: 90%;
	margin-bottom: 20px;
	border: solid #4c30478c 3px;
	outline: none;
}

#messageinput:focus {
	outline: none;
	border: solid #4c3047 3px;
}

#button {
	text-decoration: none;
	background: black;
	color: #fff;
	display: inline-block;
	padding: 10px 20px;
	border-radius: 1em;
	border: 3px grey solid;
}

#messagedisplay {
	font-size: 20px;
	font-weight: bold;
	background: #d1cac7;
	padding: 20px;
	border-left: 10px solid #4c3047;
	max-width: 90%;
}

/* media queries */

@media screen and (max-width: 750px) {
	.container {
		padding: 2em 4em;
	}
}
@media screen and (max-width: 500px) {
	.container {
		padding: 2em 2em;
	}
}
