@import url("https://fonts.googleapis.com/css?family=Lato:400,400i,700");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /*font-family: "Lato";*/
}

html,
body {
  margin: 0;
  padding: 0;
  
}

header,
section {
  width: 100%;
  display: grid;
  place-content: center;
  overflow: hidden;
  position: relative;
}


section {
  background: transparent;
}

section.container {
  position: relative;
  min-height: 400px;
}
section.container .parallax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  
}
section.container .parallax img {
  width: 100%;
  height: 100vh;
  object-position: center;
  object-fit: cover;
  
}
section.container .text {
  position: relative;
  z-index: 1;
}


.title {
  background-color: transparent;
  font-size: 7rem;
  color: white;
  text-shadow: 0 0 5px black;
  margin:0;
  text-align: center;
  text-wrap: pretty;
}

.content {

  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
  padding: 3rem 4rem;
  /*background-color: #333;
  color: white;*/
  background-color: white;
  color: black;
    
}

.scroll-animation {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translatex(-50%);
}
.scroll-animation svg {
  position: absolute;
  top: -50%;
  left: 50%;
  animation: arrow-bounce 1s ease-in-out infinite;
  transform: translate(-50%, -50%);
}

@keyframes arrow-bounce {
  0%, 100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -100%);
  }
}
ul {
  padding: 15px 0;
  display: flex;
  justify-content: center;
}
ul li {
  list-style: none;
  padding: 0 15px;
}

@media screen and (min-width: 1200px)
{
  .content {
    padding: 3rem 30rem;
  }
  .parallax-window {
    width:60%;
    margin: auto;
  }
  
}