html, body {
  width: 100%;
	height: 100%;
  margin: 0;
  padding: 0;
}
body {
	background-color: #f2f2f6;
}
.container {
	height: 100%;
	display: flex;
	align-items: center;
  justify-content: center;
}
.animated-word {
	font-family: Helvetica;
	letter-spacing: 0.4rem;
	font-weight: 600;
	font-size: 5rem;
	text-align: center;
	color: #202125;
  cursor: pointer;
  max-width: 600px; 
  width: 100%; 
  border: 3px solid  rgba(71, 126, 232,0.5);
  padding: 70px;
  transition: all 600ms ease;
}
.animated-word:hover {
  color: rgba(71, 126, 232, 0.7);
  border-color: rgba(71, 126, 232, 0);
  padding: 130px;
}
