﻿html, body
{
    margin: 0px;
    overflow:hidden;
}
.title

{
	position:fixed;
	top:0px;
	
	width: 100vw;;
	height: 100px;
	 	z-index:100;
	 	text-align:center;
	 	font-size:3em;
	 	color:#fff;
	 	line-height:2em;
	}


#wrapper {
}
#wrapper img {
    height:100vh;
    position: absolute;
    top: 0px;
    left: -100vh;
     animation: panorama 20s linear infinite both;
    animation-direction: alternate;
}
@keyframes panorama {
    0% {
       transform: translateX(calc(0vh));
    }
    100% {
        transform: translateX(calc(100vh));
    }
}
