/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Set every element's box-sizing to border-box */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Titillium Web', sans-serif;
}

h1, h2, h3, h4, h5 {
	font-family: 'Share Tech Mono', monospace;
	font-weight: bold;
	font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Your code starts here! */

.container {
	margin: auto;
	width: 900px;
	padding: 15px;
	box-sizing: border-box;
}

.container nav a {
	display: inline-block;
	box-sizing: border-box;
	text-decoration: none;
	color: #051414;
	padding: 25px;
}

nav a:hover {
	color: white; 
}

nav {
	display: inline-block;
	padding: 9px;
	background-color: #adebeb;
	border-radius: 20px;
}

nav .logo {
	display: inline-block;
	padding-left: 30px; 
}

nav .logo a {
	padding: 0;
	text-decoration: none;
}

.home-page {
	position: fixed;
}

#contact {
	color: rgb(145, 122, 82);
}

#contact:hover {
	color: white; 
}

header {
	border-bottom: 1px solid black;
}


.title {
	display: inline-block;
	box-sizing: border-box;
	margin: 90px;
	width: 300px;
	text-align: center;
}
.title h1 {
	font-size: 60px;
	font-family: 'Share Tech Mono', monospace;
	color: #44acac;
}
button {
	padding: 5px;
	width: 190px;
	height: 37px;
	font-size: 17px;
	border: 1px solid #235f5f;
	border-radius: 10px;
	background-color: #0f4f4f;
	font-family: 'Share Tech Mono', monospace;
	color: #e6f9f9;
	letter-spacing: 1.3px;
	animation-duration: 2s;
	animation-name: introbutton;
	animation-iteration-count: 30;
}

@keyframes introbutton {
	from {background-color: #0f4f4f; }
	to {background-color: #041313; }
}

.top-logo {
display: inline-block;
margin-top: 110px;
width: 300px;
}

.top-logo img {
	width: 300px;
	height: 300px;
}




/* Demonstration of more CSS specificity from User Interface I */



/* Section One */

.section-one {
	display: inline-block;
	margin: 2px;  
	padding-top: 35px; 
	box-sizing: border-box;
	width: 428px;
}
.section-one p {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 14px;
	line-height: 2;
	color: #333333;
}
.section-one.features {}
.section-one.about {}

img.middle-img {
	padding-top: 35px;
	padding-bottom: 35px;
}



/* Bottom Section */

.section-two {
	display: inline-block;
	margin: 2.8px;  
	box-sizing: border-box;
	width: 281px;
	padding-bottom: 35px; 
}
.section-two p {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 14px;
	line-height: 2;
	color: #333333;
}

.section-two.services {}
.section-two.product {}
.section-two.vision {}



/* End of page */
contact {
	display: block;
	box-sizing: border-box;
	padding-top: 34px;
	border-top: 1px solid black;
	text-align: center;
	color: #333333;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 14px;
	line-height: 2;
}


/* Footer */

footer {
	box-sizing: border-box;
	padding: 50px;
	text-align: center;
	color: #333333;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 25px;
	line-height: 2;
}


/* Contact Page */

header.contact {
	border-top: 0px;
	border-bottom: 0;
}

header nav  {
	position: static;
}

.page-box {
		display: block;
		margin: auto;
		box-sizing: border-box;
		
		padding-top: 29px;
		padding-bottom: 50px;
		font-family: 'Noto Sans KR', sans-serif;
}

.page-box p {
	font-family: 'Noto Sans KR', sans-serif;
	line-height: 1.8;
}

.page-box.form {
	padding-top: 50px; 
	width: 700px;
}

.contact-methods {
	display: inline-block;
	box-sizing: border-box; 
	margin: 10px;
	padding: 10px;
	width: 380px;
	border-radius: 20px;
	border: 1px solid black;
}

.contact-methods p {
	line-height: 1.8;
	font-size: 15px;
}

.contact-methods h2 {
	text-align: center;
}

.contact-methods.forum {
	background-color: rgb(245, 209, 226); 
}
.contact-methods.chat {
	background-color: rgb(209, 245, 219); 
}
.contact-methods.email {
	background-color: rgb(209, 214, 245); 
}
.contact-methods.phone {
	background-color: rgb(245, 209, 209); 
}

