body, html {
  border:none;
  
  position: relative;
  margin: 0;
  padding: 0;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  height: 100vh;
  background: linear-gradient(-45deg, #82bd41,#5f7494, #7a4282);
  background-size: 400% 400%;
  animation: animarFondo 50s ease infinite;
}
img {
  vertical-align: middle;
  margin-top: 25px;
}
.central-body {
  width: 100%;
  max-width: 90%;
  margin: auto;
}
.image-theme {
  //*position: relative;*//
  z-index: 100;
  pointer-events: none;
}
.home-btn {
  margin: auto;
  border-style: solid;
  border-width: 1px;
  border-color: #FFFFFF;
  border-radius: 25px;
  padding: 12px 12px 0px 12px;
  z-index: 2;
  text-decoration: none;
}
.home-btn:hover {
  background-color: rgb(255, 255, 255, .3);
}
.home-btn img {
  margin-top: -2px;
}
@keyframes animarFondo {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}