body {
	margin: auto;
	width: 100%;
	height: 100%;

}

p {
	margin: 0;
}

.Container {
	display: flex;
	justify-content: center;
	align-items: center;
}

h1{
	font-size: 15rem;
	opacity: 0.2;
}

.Whole{
	animation-name: wave;
	animation-direction: alternate;
	animation-iteration-count: infinite;
}

@keyframes wave {
	0% {transform: scale(1.0);}
    50% {transform: scale(1.1);}
    100% {transform: scale(1.0);}
  }
