body {
  color: #333;
  font-family: Verdana, sans-serif;
  margin: 0;
}

header {
  color: white;
  font-size: 19px;
  text-align: right;
  padding: 10px;
  /*background-image: url(../img/header.png);*/
  background-color: black;
  height: 20px;
  background-size: cover;
  background-position: 50% 50%;
  margin: 0;
}

header ul {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
}

header li {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
}

header li > a {
  text-decoration: none;
  color: inherit;
}

header li > a:hover {
  color: royalblue;
}

.current {
  border-bottom: 4px solid royalblue;
}

section {
  text-align: center;
}

section h1 {
  font-weight: normal;
  font-size: 36px;
  margin-bottom: 8px;
}

section h2 {
  font-weight: normal;
  font-size: 24px;
  margin-bottom: 8px;
}

section p {
  margin-top: 0;
  width: 600px;
  font-size: 20px;
  text-align: left;
  margin: 0 auto;
}

/* section > img */

.icon {
  border-radius: 25px 25px 25px 25px/25px 25px 25px 25px;
  border-color: pink;
  border-width: 5px;
  border-style: groove;;
  box-shadow: 0 0 5px gray;
}

.photo {
  border-radius: 25px 25px 25px 25px/25px 25px 25px 25px;
  border-color: lightgray;
  border-width: 5px;
  border-style: solid;
  box-shadow: 0 0 5px gray;
  text-align: center;
  margin: 10px;
}

.midasi {
  border-radius: 25px 25px 25px 25px/25px 25px 25px 25px;
  border-color: lightblue;
  border-width: 5px;
  border-style: groove;
  box-shadow: 0 0 5px gray;
  margin: 10px
}

.video {
  border-radius: 25px 25px 25px 25px/25px 25px 25px 25px;
  border-color: #48d1cc;
  border-width: 5px;
  border-style: solid;
  box-shadow: 0 0 5px gray;
  margin: 10px
}

.intro {
  border-radius: 50%;
  border-color: orange;
  border-width: 5px;
  border-style: solid;
  box-shadow: 0 0 5px gray;
}

.works {
  width: 400px;
  margin: 60px auto;
  border-bottom: 1px solid gray;
}

.works > section {
  margin-bottom: 40px;
}

.works h1,
.works p {
  text-align: left;
}

footer {
  width: 550px;
  margin: 0 auto 60px;
}

footer ul {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  float: left;
}

footer li {
  display: inline-block;
}

footer li > a:hover {
  opacity: 0.6;
}

footer p {
  color: lightgray;
  font-size: 14px;
  text-align: right;
}

.about p {
  text-align: left;
  width: 600px;
  margin: 0 auto;
  font-size: 18px
}

.centerbun p {
  text-align: center;
  width: 600px;
  margin: 0 auto;
  font-size: 18px
}
.slideshow {
	position: relative;
	overflow: hidden;
}

.slideContents {
	position: relative;
	background: lightSeaGreen;
	text-align: center;
	-webkit-user-select: none;
	user-select: none;
}
.slideContents section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.slideContents section img {
	max-width: 100%;
	padding: 0;
	box-sizing: border-box;
	vertical-align: middle;
}

.slideContents #slide1 {
	position: relative;
}
.slideContents section {
	animation: autoplay 30s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@keyframes autoplay {
	0%, 16%, 100% { transform: none; }
	20% { transform: translateX(-100%); }
	20.001%, 96% { transform: translateX(100%); }
}
.slideContents #slide1 { animation-delay: 0s; }
.slideContents #slide2 { animation-delay: -24s; }
.slideContents #slide3 { animation-delay: -18s; }
.slideContents #slide4 { animation-delay: -12s; }
.slideContents #slide5 { animation-delay: -6s; }
