/*-------------
 	General
-------------*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body{
  height: 100%;
}

ul, nav{
	list-style: none;
}

a{
	text-decoration: none;
	cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  color: black;
  font-size: 16px
}

.top-nav a:hover {
  color: #fe5c5c;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
}


/*-------------
 	Header
-------------*/


header {
  width: 100%;
  padding: 35px 0px;
  position: absolute;
}

header a {

}

nav {
  display: flex;
}

nav li {
  padding: 0px 30px;
}


/*-------------
 	Hero
-------------*/


#hero {
  width: 100%;
  height: 100%;
  background-image: url("../img/home.png");
  background-position: center center;
  background-size: cover;
}


/*-------------
 	Footer
-------------*/

footer {
 position: absolute;
 bottom: 0;
 width: 100%;
 height: 60px
}

.footer-nav li {
  padding: 0 20px
}
