body{
	background-color: #14213d;
}



.container{
	padding:16px;
	font-family:sans-serif;
	text-align:center;
	
}

.container h2{
	font-size:42px;
	color: #fff;
	text-decoration: underline;
}

.container textarea{
	display:block;
	width:100%;
	height:200px;
	border:2px solid #fff;
	border-radius: 8px;
	padding:24px;
	box-sizing: border-box;
	font-family: sans-serif;
	font-size: 16px;
	resize: none;
	max-width: 800px;
	line-height:2;
	margin:0 auto;
}

.count-btn{
	padding: 16px 48px;
	margin:32px;
	font-size: 16px;
	font-weight:bold;
	cursor:pointer;
	background:#fff;
	color:#14213d;
	border:none;
	border-radius:8px;
	transition: all 500ms ease;
}


.count-btn:hover{
	background:#001219;
	color: #fff;
}

.word-count{
	font-size: 32px;
	display:flex;
	align-items: center;
	justify-content:center;
	gap:16px;
}


.word-count span{
	font-size:56px;
	font-weight:bold;
}

footer {
  text-align: center;
  color: white;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 0;
  padding: 5px;
  background-color: #14213d;
}

footer a:visited {
  color: inherit;
}