html { height: 100%; }

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* generic styles */

body {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #333333;
	background-color: #ececec;	
}

a {
	color: #999999;
	text-decoration: none;
}
a:hover {
	color: #777777;
	text-decoration: none;
}

h1 {
    font-size: 25px;
	font-weight: 400;
    margin: 50px 25px 10px 25px ;
    letter-spacing: 10px;
}

h2 {
    font-size: 18px;
	margin: 0px 0px 20px 0px ;
	font-weight: 400;
	color: #1e1e1e;
	line-height: 32px;

}

h3 {
    font-size: 12px;
    letter-spacing: 2px;
	font-weight: 400;
	margin: 20px 0px 20px 0px ;

}

h4 {
    font-size: 12px;
	font-weight: 400;
    letter-spacing: 4px;
	margin: 20px 0px 20px 0px ;
	color: #a1a1a1;

}

h5 {
    font-size: 16px;
	font-weight: 400;
	margin: 20px 0px 20px 0px ;
	line-height: 22px;


}

p {
	font-size: 15px;
	color: #777777;
	line-height: 28px;
}

body > section {
	min-height: 100vh;
	padding-top: 5rem;
}



hr {
	display: block;
	margin:auto;
	border-style: solid;
	color: #cccccc;
	border-width: 0.5px;
}



/* layout */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/* page elements */

#about {
	background-color: #f1f1f1;
	padding: 100px 50px 100px 50px;
}

#portfolio {
	background-color: #f8f8f8;
	padding: 100px 50px 100px 50px;
}

#blog {
	background-color: #f1f1f1;
	padding: 100px 50px 100px 50px;
}

#contact {
	background-color: #f8f8f8;
	padding: 100px 50px 100px 50px;
}

#stalk {
	background-color: #f1f1f1;
	padding: 100px 50px 100px 50px;
}

#page-top {
	padding: 0 25px 0 25px;
	top: 0;
	width: 100%;
	position: fixed;
	background-color: #ffffff;
	z-index: 1;
}

#page-bottom  {
	background-color: #222222;
	padding: 25px 50px 50px 50px;
	color: #ffffff;
	font-size: 12px;
	text-decoration: none;
}

#page-top h1 {
	float: left;
	margin: 10px 10px 10px 0;
}

#main-menu {
	float: right;
	font-size: 14px;
	list-style: none;

}

#main-logo {
	float: left;
	margin: 25px 100px 5px 0px;
	font-size: 18px;
	color: #000000;
}

#main-menu a {
	padding: 1rem;
	line-height: 2rem;
	display: block;
	width: 100%;
}

#main {
	text-align: center;
}

#social_footer {
	text-align: right;
}

/* menu */

header #main-menu {
	width: 100%;
	text-align: center;
	clear: both;
	max-height: 0;
	transition: max-height .2s ease-out;
	overflow: hidden;

}

/* menu icon */

header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 15px;
  position: relative;
  user-select: none;
}

header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 25px;
}

header .menu-icon .navicon:before,
header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

header .menu-icon .navicon:before {
  top: 6px;
}

header .menu-icon .navicon:after {
  top: -6px;
}

/* menu btn */

header .menu-btn {
  display: none;
}

header .menu-btn:checked ~ #main-menu {
  max-height: 100%;
}

header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.desktop-only {
	visibility: hidden;
}

/* 48em = 768px */

@media (min-width: 48em) {
	.desktop-only {
		visibility: visible;
	}

	header li {
    	float: left;
  	}

	header li a {
    	padding: 20px 30px;
 	}

	header #main-menu {
    	clear: none;
    	float: right;
    	max-height: none;
		width: auto;
		margin: 25px 0 5px 25px;
	}
	
	header #main-menu a {
		padding: 0 2.5em;
	}
	
	header .menu-icon {
    	display: none;
	}
	
  	box {
		width: 100%;
	}


	/* Defining a Grid  */

	.wrapper {
		display: grid;
		grid-template-columns: 48% 48%;
		grid-gap: 4%;
	}

	.box {
		font-size: 100%;
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.box_footer {
		font-size: 100%;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}


	/* Defining Contact Grid  */

	.wrapper_contact {
		display: grid;
		grid-template-columns: 27% 65%;
		grid-gap: 8%;
	}
	
	.box_contact {
		font-size: 100%;
		padding: 20px;
	}

/* Form */
.form {
    font-size: 12px;
    letter-spacing: 1.2px;
	font-weight: 400;
	margin: 10px 10px 20px 10px ;
	padding: 10px;

}



