body {
	width: 100wh;
	height: 90vh;
	color: GhostWhite;
  background-color: GhostWhite;
}

.center-box {
  margin: auto;
  margin-top: 25px;
  width: 250px;
  border: 0px solid grey;
  border-radius: 200px;
  padding: 40px;
  background-color: IndianRed;
  -webkit-animation: Gradient 8s ease infinite;
  -moz-animation: Gradient 8s ease infinite;
  animation: Gradient 8s ease infinite;
}

@-webkit-keyframes Gradient {
  0% {
    background-color: IndianRed;
  }
  50% {
    background-color: DarkCyan;
  }
    100% {
    background-color: IndianRed;
  }
}

@-moz-keyframes Gradient {
  0% {
    background-color: IndianRed;
  }
  50% {
    background-color: DarkCyan;
  }
    100% {
    background-color: IndianRed;
  }
}

@keyframes Gradient {
  0% {
    background-color: IndianRed;
  }
  50% {
    background-color: DarkCyan;
  }
    100% {
    background-color: IndianRed;
  }
}

h1 {
	font-family: 'Open Sans';
	text-transform: capitalize;
  font-size: x-large;
	font-weight: bold;
  text-align: center;
}

h2 {
	font-family: 'Open Sans';
  font-size: large;
	font-weight: normal;
  text-align: center;
}
