@charset "UTF-8";
/* CSS Document */
body{
	background: #9E5D5E
}
h1{
	color:#F9F6F6
}
p{
color:#F9F6F6
}

.example{
	position:relative
}

.example a{
	position:absolute;
	color:#9E5D5E;
　　-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 p{
	font-size:30px;
	color:#9E5D5E;
}
.example a:hover{/*カーソルを当てたとき*/
  background: rgba(255, 255, 255, 0.3);/*背景を半透明に*/
  }