
/********  FONT  *********/

@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400,900);


/********  HTML  *********/

html {
  height: 100%;
  padding: 0;
  background-color: #5BB4EB;
  background-image: url('../images/geometric-background.svg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

@media only screen and (max-width : 768px) {
  html {
    background-size: auto 120vh;
    background-attachment: scroll;
  }
}

body {
  margin: 0;
  background-color: transparent;
  font-family: 'Lato', sans-serif;
}


/********  MENU  *********/

#menu {
  position: fixed;
  height: 50px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: color 1s, background-color 1s, -webkit-transform 1s;
  transition: color 1s, background-color 1s, transform 1s;
}

#logo {
  margin: 9px 10px 9px 5%;
  float: left;
}

#navigation {
  float: left;
}


/********  MAIN CONTENT  *********/

.homepage-section {
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}

#hero {
  height:100vh;
  max-height:100vh;
  padding: 20% 10%;
}

#hero-content {
  overflow: hidden;
  padding-top: 20px;
}

#hero h1 {
  text-align: center;
  color: white;
  font-weight: 300;
  font-size: 34px;
  margin: 0 auto 10px 0;
}

#hero p {
  text-align: center;
  color: white;
  font-weight: 300;
  font-size: 18px;
  margin-top: 0;
}

#hero a {
  text-decoration: none;
  color: lightgray;
  cursor: default;
}

#hero a:hover {
  text-decoration: none;
  color: gray;
}
