body {
	height: 90vh;
	color: #fff;
	background-color: #fff;
	font-family: Roboto,sans-serif;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes moving-image {
	0% {
		background-position: 40% 50%
	}
	50% {
		background-position: 60% 50%
	}
	100% {
		background-position: 40% 50%
	}
}

@-webkit-keyframes change-color {
	0% {
		color: #fd9800;
	}
	50% {
		color: #00ffbf;
	}
	100% {
		color: #15ff00;
	}
}

@-moz-keyframes change-color {
	0% {
		color: #fd9800;
	}
	50% {
		color: #00ffbf;
	}
	100% {
		color: #15ff00;
	}
}

@keyframes change-color {
	0% {
		color: #fd9800;
	}
	50% {
		color: #00ffbf;
	}
	100% {
		color: #15ff00;
	}
}

h1,
h6 {
	font-family: 'Open Sans';
	font-weight: 300;
	text-align: center;
	position: absolute;
	top: 45%;
	right: 0;
	left: 0;
}

.shake {
	animation: shake-animation 4.72s ease infinite;
	transform-origin: 50% 50%;
  }
  .element {
	margin: 0 auto;
	width: 150px;
	height: 150px;
	background: red;
  }
  @keyframes shake-animation {
	 0% { transform:translate(0,0) }
	1.78571% { transform:translate(5px,0) }
	3.57143% { transform:translate(0,0) }
	5.35714% { transform:translate(5px,0) }
	7.14286% { transform:translate(0,0) }
	8.92857% { transform:translate(5px,0) }
	10.71429% { transform:translate(0,0) }
	100% { transform:translate(0,0) }
  }

  .backdrop {
	  -moz-box-shadow: 0px 6px 5px #111; 
	  -webkit-box-shadow: 0px 6px 5px #111; 
	  box-shadow: 0px 2px 10px #111; 
	  -moz-border-radius:190px; 
	  -webkit-border-radius:190px; 
	  border-radius:190px;
  }

  .button-app {
	width: 80%; 
	padding-top:10px; 
	padding-bottom:10px; 
	border-radius: 50px;
  }

  .fw-800{
	font-weight: 800;
  }
  .fw-600 {
	font-weight: 600;
  }

  .linktree {
	  width: 120px;
	  height: 120px;
/* 	  background-image: url("img/logopura.png"); */
	  background-size: cover;
	  background-repeat: no-repeat;
	  background-position: 50% 50%;
  }

  #container-app {
	/* max-width: 600px; */
	height:100%;
	margin-left: auto;
	margin-right: auto;
	/* background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB); */
	background: url('img/bg/720-1280.png');
	background-size: 150% 120%;
	-webkit-animation: moving-image 10s ease infinite alternate;
	-moz-animation: moving-image 10s ease infinite alternate;
	animation: moving-image 10s ease infinite alternate;
}

.credit {
	-webkit-animation: change-color 10s ease infinite alternate;
	-moz-animation: change-color 10s ease infinite alternate;
	animation: change-color 10s ease infinite alternate;
}

@media screen and (min-width: 1080px) and (min-height: 1920px) {
	#container-app {
		background: url('img/bg/1920-1080.png');
		background-size: 150% 120%;
	}
}

@media screen and (min-width: 1920px) and (min-height: 2160px){
	#container-app {
		background: url('img/bg/1920-2160.png');
		background-size: 150% 120%;
	}
}