body {
  background: #fff;
  width: 100%; 
  margin: 0; 
  padding: 0; 
}
.video-wrap {
  position: relative;
}
video {
  display: block;
  margin: 0;
}

h1 { 
	color:#363636; 
	font-size: 18px; 
	text-align: center; 
}

p { 
	font-size: 14px; 
	color: #363636; 
	line-height: 18px; 
}

h2 { 
	color:#363636; 
	font-size: 16px; 
}









.mocchiri {
    animation: mocchiri 3s infinite;
}
@keyframes mocchiri {
    0% {
        transform: scale(1, 0.8);
    }
    20% {
        transform: scale(0.8, 1.1);
    }
    95% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(1, 0.8);
    }
}