@charset "UTF-8";
/* CSS Document */

body{
	background:#809E84;
}
.example{
	position:relative;
}

.example a{
	position:absolute;
	color:white;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
	font-size: 60px;
	top:50%;
	left:50%;
	margin:0;
	padding: 0;
}

.example img{
	width: 100%
}

.example a:hover{/*カーソルを当てたとき*/
  background: rgba(255, 255, 255, 0.3);/*背景を半透明に*/
  }