@charset "utf-8";
/* CSS Document */

	@import url('https://fonts.googleapis.com/css?family=Ruda:900');

body {
  background-image: url(http://reinadecorazon.com/patt2.png);
  background-position: bottom;
  animation: 4s linear 0s infinite bp;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes bp {
  from {
    background-position:  216px 0;
  }
  
  to {
    background-position:  0 216px;
  }
}

html, body {
  height: 100%;
  margin: 0;
}

.text {
  font: 900 18px Ruda;
  color: #C08;
 /* background: white;*/
  display: inline-block;
  padding: 1rem;
}

