@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,600);
html, body {
  font-family: 'Open Sans', sans-serif;
}

.container {
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-around;
  position: relative;
  width: 100%;
}
.container section {
  width: 100%;
  height: 100vh;
  flex: 1;
  display: flex;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.container section:nth-child(1) .image {
  background-image: url(sfondo.png);
}
.container section .image {
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 500;
  opacity: 0.4;
}
.container section .stuff {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  width: 100%;
  max-width: 70%;
  justify-content: center;
  text-align: center;
  z-index: 1000;
  color: #4b804b;
  margin: 0 auto;
  font-size: 20px;
  position: relative;
}
.container section .stuff h1 {
  margin: 0px;
  color: #284628;
  font-size: 32px;
}
.container section .stuff h2 {
  margin: 0px;
  color: #284628;
  font-size: 24px;
}
.container section .stuff h3 {
  margin: 0px;
  color: #284628;
  font-size: 14px;
}
.container section .stuff li {
  margin: 0px;
  text-align: left;
}
.container section .stuff:before, .container section .stuff:after {
  width: 100%;
  height: 1px;
  display: block;
  background-color: #d35400;
  content: "";
  margin: 30px 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: underline;
}