.c-leaf {
  position: relative;
  overflow: hidden;
  width: 403px;
  height: 403px;
  margin: 0 auto;
  background: #eee;
  transform: scale(1);
}

.c-leaf__icon {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 1;
  width: 405px;
  height: 405px;
  fill: #fff;
}

.c-leaf__fill {
  width: 405px;
  height: 405px;
  background: #ED0B6D;
  -webkit-animation: fillUp 5.5s ease-in-out infinite;
          animation: fillUp 5.5s ease-in-out infinite;
}

@-webkit-keyframes fillUp {
  0% {
    transform: translate(0, 135px);
  }
  100% {
    transform: translate(0, -435px);
  }
}

@keyframes fillUp {
  0% {
    transform: translate(0, 435px);
  }
  100% {
    transform: translate(0, -135px);
  }
}
.x-reset-container {
  display: flex;
  align-items: center;
  padding: 50px;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: #F6F6F6;
   animation: fadeInAnimation ease 4s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }
h1 {
	text-align: center;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;

}