body {
	margin: 0;
	background-color: #fff;
}

#page-container {
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

#splash-container {
	position: relative;
	display: block;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index: 0;
}

#splash {
	display: block;
	background-color: #fff;
	width: 100vw;
	height: 100vh;
}

#enter-site {
	position: absolute;
	display: block;
	left: -20px;
	right: 0;
	bottom: 0;
	font-family: 'Mate', serif;
	font-size: 24px;
	text-transform: lowercase;
	text-align: center;
	line-height: normal;
	margin: 0 0 20px 0;
	color: #000;
	opacity: 0;
}

#enter-site span {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

#enter-site span::after {
	position: absolute;
	content: url("arrow.svg");
	background-size: 100%;
	width: 20px;
	height: 30px;
}

#menu-container {
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	display: none;
	z-index: 6;
}

#menu {
	position: fixed;
	top: 0;
	right: -400px;
	width: 300px;
	height: 100vh;
	display: block;
	z-index: 1;
}

#close-button {
	position: relative;
	width: 100px;
	height: 100px;
	background-image: url("close.svg");
	cursor: pointer;
	float: right;
}

#close-area {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #000;
	opacity: 0;
	z-index: 0;
}

#angle {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 120vh;
	width: 300px;
	transform: rotate(-7deg);
	-webkit-transform: rotate(-7deg);
	transform-origin: bottom left;
	-webkit-transform-origin: bottom left;
	background-color: #00A7F6;
	z-index: 1;
}

#menu-items { /*nav*/
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 100vh;
	display: block;
	background-color: #00A7F6;
	z-index: 2;
}

#menu-items a {
	display: block;
	float: right;
	clear: both;
	margin-right: 20px;
	margin-bottom: 20px;
	font-family: "Lato", sans-serif;
	font-size: 50px;
	font-weight: 900;
	font-style: italic;
	text-decoration: none;
	color: #000;
}

#navigation-bar {
	position: absolute;
	display: block;
	top: -100px;
	left: 0;
	width: 100%;
	height: 100px;
	background-color: #00A7F6;
	z-index: 5;
}

h1 {
	font-family: "Lato", sans-serif;
	font-size: 50px;
	font-weight: 900;
	font-style: italic;
	color: #000;
	padding: 16px 20px 24px 20px;
	margin: 0;
	float: left;
	cursor: pointer;
}

h2 {
	font-family: "Lato", sans-serif;
	font-size: 35px;
	font-weight: 900;
	font-style: italic;
	color: #000;
	margin: 20px 0;
}

#logo-text {
	color: #000;
	text-decoration: none;
}

#menu-button {
	width: 100px;
	height: 100px;
	background-image: url("menu.svg");
	float: right;
	cursor: pointer;
}

#site-content {
	position: relative;
	width: 100%;
	height: auto;
	background-color: #fff;
	opacity: 1;
	overflow: hidden;
	box-sizing: border-box;
}

.center-content {
	width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}

.center-content::after {
	content: "";
	display: block;
	clear: both;
}

.general-container {
	width: 100%;
	height: auto;
}

.general-container img {
	display: block;
	float: left;
	width: 225px;
	height: 225px;
	margin-right: 20px;
}

#social-links {
	width: 80px;
	display: block;
	margin: 0 auto 20px auto;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
}

#social-links::after {
	content: "";
	display: block;
	clear: both;
}

#social-links a {
	display: inline-block;
	float: left;
}

#twitter {
	/*background-color: #55acee;*/
	background-image: url("twitter-128-black.png");
	background-size: 100%;
	width: 40px;
	height: 40px;
}

#instagram {
	/*background-color: #3f729b;*/
	background-image: url("instagram-128-black.png");
	background-size: 100%;
	width: 40px;
	height: 40px;
}

p, #error {
	font-family: 'Mate', serif;
	font-size: 22px;
	line-height: 2;
	margin: 20px 0 20px 0;
}

#error {
	text-align: center;
}

p a {
	color: #1D7553;
	text-decoration: none;
	border-bottom: 1px solid #1D7553;
}

.post {
	float: left;
	margin-bottom: 20px;
}

.post:nth-child(odd) {
	margin-right: 20px;
}

.post a {
	width: 490px;
	height: 275px;
	display: block;
}

.post h2 {
	margin: 20px 0 0 0;
	border-bottom: 2px solid #000;
	display: inline-block;
}

.post h2 a {
	width: auto;
	height: auto;
	color: #000;
	text-decoration: none;
}

form {
	margin: 0 0 20px 0;
}

input[type=text], input[type=email], textarea {
	font-family: 'Mate', serif;
	font-size: 22px;
	width: 400px;
	display: block;
	padding: 5px 0;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 2px solid #000;
	border-radius: 0;
	margin: 20px 0;
	-webkit-appearance: none;
	outline: none;
}

textarea {
	height: 100px;
	border-radius: 0;
	-webkit-appearance: none;
}

input[type=submit] {
	font-family: "Lato", sans-serif;
	font-size: 35px;
	font-weight: 900;
	font-style: italic;
	color: #000;
	border: none;
	border-radius: 0;
	padding: 5px 0;
	margin: 0;
	background-color: #fff;
	cursor: pointer;
	-webkit-appearance: none;
	outline: none;
}

#loading-container {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	opacity: 0;
}

#loading {
	position: absolute;
	display: block;
	width: 100px;
	height: 100px;
	top: 50%;
	left: 50%;
	margin: -50px 0 0 -50px;
	animation: loading 1s cubic-bezier(0.5, 0.4, 0.5, 0.7);
	-webkit-animation: loading 1s cubic-bezier(0.5, 0.4, 0.5, 0.7);
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	background-image: url("loading.svg");
}

@media ( max-width: 1000px ) {
	.center-content {
		width: 600px;
	}

	p, #error {
		font-size: 20px;
	}
}

@media ( max-width: 600px ) {
	#navigation-bar {
		position: absolute;
	}

	.center-content {
		width: 100%;
	}

	.general-container img {
		float: none;
		margin: 20px auto 0 auto;
	}

	p, #error {
		font-size: 18px;
		margin: 20px;
	}

	h2 {
		margin: 20px;
	}

	#angle {
		width: 200px;
	}

	#menu-items {
		width: 200px;
	}

	#menu {
		right: -300px;
		width: 200px;
	}

	form {
		margin: 0 20px 20px 20px;
	}

	input[type=text], input[type=email], textarea {
		width: 100%;
		margin: 20px auto;
	}
}

/*for animation*/

#dose, #ted {
	font-family: "Lato", sans-serif;
	font-size: 100px;
	font-weight: 900;
	font-style: italic;
	color: #000;
	cursor: default;
}

@media ( max-width: 550px ){
	#dose, #ted {
		font-size: 50px;
	}
}

@keyframes loading {
	0% { transform: rotate(0); }
	100% { transform: rotate(360deg); }
}

@-webkit-keyframes loading {
	0% { transform: rotate(0); }
	100% { transform: rotate(360deg); }
}
