body {
	width: 100wh;
	height: 90vh;
	color: #fff;
	background: linear-gradient(-45deg, #1166b0, #192744, #00547d, #14495D);
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}

@-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%
	}
}

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;
  }

  .linktree {
	  width: 120px;
	  height: 120px;
	  background-image: url("logowhite.png");
	  background-size: cover;
	  background-repeat: no-repeat;
	  background-position: 50% 50%;
  }

  .imagelogo{
    width: 120px;
    height: 120px;
    -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;*/
  }

  .newhover:hover{
    color: #004987;
    background-color: #f9bf18;
    border-color: #f8f9fa;
  }



  .fa {
    padding: 20px;
    font-size: 20px;
    width: 60px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    /*border-radius: 50%;*/
  }
  
  .fa:hover {
      opacity: 0.9;
      color:gray;
      text-decoration: none;
  }
  
  .fa-facebook {
    background: #3B5998;
    color: white;
  }
  
  .fa-twitter {
    background: #55ACEE;
    color: white;
  }
  
  .fa-google {
    background: #dd4b39;
    color: white;
  }
  
  .fa-linkedin {
    background: #007bb5;
    color: white;
  }
  
  .fa-youtube {
    background: #bb0000;
    color: white;
  }
  
  .fa-instagram {
    background: #125688;
    color: white;
  }
  a.disabled {
    pointer-events: none;
    color: #ccc;
}



  .main-div {
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: space-between;
	transform: perspective(500px) rotateY(-42deg);
	-webkit-transform: perspective(500px) rotateY(-42deg);
	-moz-transform: perspective(500px) rotateY(-42deg);
	-ms-transform: perspective(500px) rotateY(-42deg);
	-o-transform: perspective(500px) rotateY(-42deg);
	animation-name: rotate-windows;
	animation-iteration-count: infinite;
	animation-duration: 3s;
	animation-fill-mode: forwards;
  }
  
  
  @keyframes rotate-windows {
	0% {
	  transform: perspective(500px) rotateY(0deg);
	  -webkit-transform: perspective(500px) rotateY(0deg);
	  -moz-transform: perspective(500px) rotateY(0deg);
	  -ms-transform: perspective(500px) rotateY(0deg);
	  -o-transform: perspective(500px) rotateY(0deg);
	}
	50% {
	  transform: perspective(500px) rotateY(-180deg);
	  -webkit-transform: perspective(500px) rotateY(-180deg);
	  -moz-transform: perspective(500px) rotateY(-180deg);
	  -ms-transform: perspective(500px) rotateY(-180deg);
	  -o-transform: perspective(500px) rotateY(-180deg);
	}
	100% {
	  transform: perspective(500px) rotateY(-360deg);
	  -webkit-transform: perspective(500px) rotateY(-360deg);
	  -moz-transform: perspective(500px) rotateY(-360deg);
	  -ms-transform: perspective(500px) rotateY(-360deg);
	  -o-transform: perspective(500px) rotateY(-360deg);
	}
  }
