* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
	word-break: keep-all;
}

body {
	width: 100%;
	height: 100%;
	padding: 30px;
	color: white;
}

video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	z-index: -1;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	padding: 30px;
}

.header {
	position: relative;
	display: inline-block;
	width: calc( (100% - 60px) * 0.25);
	vertical-align: top;
	padding-right: 50px;
}

h1, h2, h3 {
	position: relative;
	display: inline;
	font-weight: normal;
	font-size: 16px;
	z-index: 99;
	word-break: keep-all;
}

#sheeps {
	position: absolute;
	display: block;
	width: calc(100% - 58px);
	height: auto;
	top: 150px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 1;
}

.each {
	position: relative;
	display: inline-block;
	width: 300px;
}

.name {
	cursor: pointer;
}

#bgcolor {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #2a813e;
}

details {
	display: inline-block;
	margin-bottom: 30px;
	outline: none;
}

summary {
	outline: none;
}

details summary::-webkit-details-marker {
  display:none;
}

li {
	color: white;
	list-style: none;
}

td {
	text-align: left;
	width: 200px;
	vertical-align: top;
}

.item {
	width: 80px;
}

.table a {
  display: block;
  text-decoration: none;
}

.board {
	cursor: pointer;
}

p {
	font-size: 16px;
}

a {
	color: white;
	text-decoration: none;
}

@media screen and (max-width: 1000px) {

	h1, h2, h3 {
		font-size: 30px;
	}

	details,
	summary {
		width: 100%;
	}

	.header {
		padding-right: 15px;
	}

	.each {
		width: 100%;
	}

	#sheeps {
		top: 400px;
	}

	p {
		font-size: 30px;
	}

	table {
		font-size: 30px;
	}

	td {
		text-align: left;
		width: 600px;
	}

	.item {
		width: 180px;
	}

}