* {
  padding: 0;
  margin: 0;
  vertical-align: baseline;
  list-style: none;
  border: 0;
}

html,
body {
  position: relative;
  min-height: 100vh;
}

header {
  background-color: #E9E9E9;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

header div.logo-container {
  width: 300px;
  height: 90px;
  margin: 0px 50px;
  padding: 10px 0px;
  overflow: hidden;
}

header div.logo-container img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

main {
  background-color: #EAE7E0;
  z-index: 0;
}

main div.hero-main {
  padding: 20px 0px 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 12vh;
}

main div.hero-main p {
  width: 40%;
  font-size: 20px;
  font-family: "Source Sans Pro", sans-serif;
  padding-bottom: 20px;
  -webkit-animation: fadein 3s;
          animation: fadein 3s;
}

main div.hero-main img {
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  -webkit-animation: slidein 2s;
          animation: slidein 2s;
  overflow: hidden;
  margin-bottom: 30px;
}

footer {
  z-index: 0;
  clear: both;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 20%;
  background-color: #E9E9E9;
}

footer div.hero-footer {
  position: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
}

footer div.hero-footer span {
  -webkit-animation: fadein 4s;
          animation: fadein 4s;
  font-family: "Source Sans Pro", sans-serif;
}

@-webkit-keyframes slidein {
  0% {
    -webkit-transform: translate(800px, 0px);
            transform: translate(800px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@keyframes slidein {
  0% {
    -webkit-transform: translate(800px, 0px);
            transform: translate(800px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
