@font-face {
  font-family: fndrs;
  font-weight: 300;
  font-style: normal;
  src: url(./fonts/FoundersGrotesk-Light.woff2) format("woff2")
}

@font-face {
  font-family: fndrs;
  font-weight: 400;
  font-style: normal;
  src: url(./fonts/FoundersGrotesk-Regular.woff2) format("woff2")
}

@font-face {
  font-family: fndrs;
  font-weight: 500;
  font-style: normal;
  src: url(./fonts/FoundersGrotesk-Medium.woff2) format("woff2")
}


@font-face {
  font-family: cnl;
  font-weight: 500;
  font-style: normal;
  src: url(./fonts/Canela-Medium.woff2) format("woff2")
}

@font-face {
  font-family: cnl;
  font-weight: 700;
  font-style: normal;
  src: url(./fonts/Canela-Bold.woff2) format("woff2")
}

/* Basics */

html {
  font-size: 100%;
  line-height: 1.6;
}

body {
  font-family: fndrs;
  font-weight: 300;
  color: #fafafa;
  background: #151515;
}

/* Scroll animation */

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -56.25vw, 0);
    transform: translate3d(0, -56.25vw, 0);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -56.25vw, 0);
    transform: translate3d(0, -56.25vw, 0);
  }
}

/* Structure */

#container {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#background {
  background-image: url(img/bg.jpg);
  background-position: center center;
  background-size: 100% auto;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 1000%;
  width: 100%;
  -webkit-animation: scroll 48s linear infinite;
  animation: scroll 48s linear infinite;
}

#content {
  margin: auto;
  text-align: center;
  position: relative;
}

/* Typography */

h1 {
  color: #fafafa;
}

p {
  color: #cccccc;
}

p#soon {
  color:#c39d63;
  text-transform: uppercase;
  letter-spacing: .5rem;
}


/* Buttons */

a.button {
  background: #fdfdfb;
  border-radius:2px;
  border: 0;
  margin: auto;
  box-shadow: 0 8px 8px 2px rgba(40, 65, 53, .04);
  display: inline-block;
}

a.button svg {
  vertical-align: middle;
  margin-right: .6rem;
  margin-top: -.2rem;
}

a.button,
a.button:active,
a.button:visited {
  color: #c39d63;
  background: #121212;
  text-decoration: none;
}

a.button>svg>path {
  fill: #c39d63;
}

a.button:hover {
  color: #ebbd77;
  background: #101010;
}

a.button:hover>svg>path {
  fill: #ebbd77;
}

a.button {
  transition: .2s ease-in-out color;
}

path {
  transition: .2s ease-in-out fill;
}

@media only screen and (max-device-width:700px) {

  #background {
    opacity: .56;
  }

  #content {
    margin-top: 4vh;
    height: 200px;
    width: 88%;
  }

  h1 {
    font: 500 3rem cnl;
    margin-bottom: 1rem;
  }

  p#soon {
    font: .6rem fndrs;
    text-transform: uppercase;
    letter-spacing: .5rem;
    margin: .5rem auto 2rem;
  }

  p {
    width: 100%;
    font: 400 1rem/1.6 fndrs;
    margin: .5rem auto;
  }

  a.button {
    font: 500 1rem fndrs;
    padding: 16px 24px 18px 24px;
    display: inline-block;
    margin-top: 1.5rem;
  }

}

@media only screen and (min-device-width:701px) and (max-device-width:1024px) {

  #content {
    margin-top: 24vh;
    height: 200px;
    width: 80%;
  }

  h1 {
    font: 500 4rem cnl;
    margin-bottom: 2rem;
  }

  p#soon {
    font: .8rem fndrs;
    text-transform: uppercase;
    letter-spacing: .5rem;
    margin: .5rem auto 2rem;
  }

  p {
    width: 33rem;
    font: 400 1.4rem/1.6 fndrs;
    margin: 1rem auto;
  }

  a.button {
    font: 500 1.2rem fndrs;
    padding: 16px 24px 18px 24px;
    display: inline-block;
    margin-top: 3rem;
  }

  a.button:first-of-type {
    margin-right: 1.5rem;
  }



}

@media only screen and (min-device-width:1025px) {

  #content {
    margin-top: 24vh;
    height: 200px;
    width: 80%;
  }

  h1 {
    font: 500 4rem cnl;
    margin-bottom: 1rem;
  }

  p#soon {
    font: .8rem fndrs;
    text-transform: uppercase;
    letter-spacing: .5rem;
    margin: .5rem auto 4rem;
  }

  p {
    width: 33rem;
    font: 400 1.4rem/1.6 fndrs;
    margin: 1rem auto;
  }

  a.button {
    font: 500 1.2rem fndrs;
    padding: 16px 24px 18px 24px;
    display: inline-block;
    margin-top: 3rem;
  }

  a.button:first-of-type {
    margin-right: 1.5rem;
  }

}