@charset "utf-8";
/* CSS Document */

iframe {
  animation-duration: 3s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
	border: none;
    margin-left: 100%;
    width: 300%;
  }

  60% {
	border: 1px;
  }

  75% {
    margin-left: 15%;
    width: 150%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}

@media all {
	/*iframe {
		width: 100vw;
		height: 100vh;
		-webkit-transform: scale(0.5) translate(-50%, -50%);
	}*/
}
