* {
	margin: 0;
	padding: 0;
	font-family: Helvetica, sans-serif;
	box-sizing: border-box;
	vertical-align: top;
}
html {
	width: 100%;
	background-color: #000;
}
body {
	width: 100%;
	background-color: #fff;
}
img {
	vertical-align: top;
}
a {
	color: #000;
}
html {
	width: 100%;
}
body {
	width: 100%;
}
header {
	width: 100%;
	border-bottom: 0px solid #000;
}
h1 a {
	text-decoration: none;
}
p {
	font-size: 0.8em;
	font-weight: normal;
}
main {
	width: 100%;
}
main section {
	width: 100%;
}
main section:nth-child(odd) {
	background-color: #ececec;
}
main section form {
	width: 100%;
}
main section form p {
	width: 100%;
}
main header {
	height: auto;
}
@media all and (max-width: 768px) {
main header {
	width: 100%;
}
}
main section h3 {
	font-size: 1.8em;
	font-weight: bold;
}
@media all and (max-width: 768px) {
main section h3 {
	font-size: 1.2em;
	font-weight: bold;
}
}
main section p {
	font-size: 1.7em;
	font-weight: bold;
}
@media all and (max-width: 768px) {
main section p {
	font-size: 1.0em;
}
}
main section form p {
	letter-spacing: 1px;
}
main section form p input {
	width: 100%;
	height: 100px;
	border: 2px solid #000;
	border-radius: 0px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 0px;
	font-size: 40px;
}
main section form p input:focus,
main section form p textarea:focus {
	border: 2px solid #59ff77;
	outline: 0;
}
main section form p textarea {
	width: 100%;
	height: 400px;
	border: 2px solid #000;
	border-radius: 0px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 0px;
	font-size: 40px;
	resize: none;
}
main section form p button {
	width: 100%;
	height: 100px;
	border: 2px solid #000;
	border-radius: 0px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-size: 2em;
	margin-top: 4px;
	margin-bottom: 4px;
	background: none;
	letter-spacing: 7px;
}
body#about main section div {
	width: 100%;
	margin-bottom: 0px;
	border-bottom: 1px solid gray;
}
body#about main section div:last-child {
	border-bottom: 0px solid gray;
}
body#works main section div {
	width: calc(100% / 3);
	height: 300px;
	position: relative;
	overflow-x: hidden;
	float: left;
}
@media all and (max-width: 768px) {
body#works main section div {
	width: calc(100%);
	height: 300px;
	float: none;
}
}
body#works main section > div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
body#works main section > div > div {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	transition: all 500ms 0s ease;
}
body#works main section > div > div > p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 3em;
	letter-spacing: 2px;
	font-weight: bold;
}
@media all and (max-width: 768px) {
body#works main section > div > div > p {
	font-size: 3em;
	letter-spacing: 2px;
	font-weight: bold;
}
}
footer {
	width: 100%;
	background-color: #000;
}
footer section:nth-child(even) {
	background-color: #272727;
}
.red {
	color: red;
}