@charset "UTF-8";


#japantshirt {
	position: relative;
	height: 100vh;
}


#japantshirt img{
	width: 200px;
	position: absolute;
	top: 35%;
	left: 0;
	right: 0;
	margin: 0 auto;
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

#japantshirt img.active {
    opacity: 1;
}


@media only screen and (max-width: 400px) {
	#japantshirt img {
	  width: 50%;
	  margin: 0 25%;
	  top: 25%;
	}
	
}