@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  font-size: .9em;
  line-height: 1.4em;
}

body#home {
  color: #ccc;
  line-height: 1.8em;
}

a {
  color: #B7CD29;
  text-decoration: none;
}


::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}


/* IN THE WEEDS */

body#home .wrapper {
  width: 100vw;
  height: 100vh;
  background: url('../img/bg-grass.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.heroWrap {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 1));
}
.heroBase {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #555;
  width:80.1vw;
  height: 100vh;
  min-height: 600px;
  clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
  box-shadow: 0 0 20px #000;
}
.hero {
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgb(50,50,50);
  background: linear-gradient(120deg, rgba(50,50,50,1) 0%, rgba(0,0,0,1) 100%);
  width:80vw;
  height: 100vh;
  min-height: 600px;
  clip-path: polygon(0 0, 100% 0%, 65% 100%, 0% 100%);
}

.header {
  position: relative;
  background: rgb(50,50,50);
  background: linear-gradient(120deg, rgba(50,50,50,1) 0%, rgba(0,0,0,1) 100%);
  width:100vw;
  height: 60px;
}

.header .logo {
  float: left;
  margin: 20px 0 0 0;
  height: 18px;
}

.header .link {
  float: right;
  margin: 20px 0 0 20px;
}

.header a.link {
  color: #999;
  font-size: .7em;
}

.contain {
  max-width: 800px;
  margin: auto;
  padding: 0px 20px;
}

.copy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 80px;
  width: 38vw;
}

.copy b {
  color: white;
}

.logo {
  height: 25px;
}
.laptop {
  position: absolute;
  right: -15vh;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60vw;
}

.copy h1 {
  font-family: 'Noto Sans', sans-serif;
  color: white;
  font-size: 5vw;
  line-height: 4.5vw;
  margin: .5em 0 .5em -5px;
}

.copy a.button {
  color: #B7CD29;
  text-decoration: none;
  border: 1px solid #B7CD29;
  border-radius: 100px;
  padding: 12px 24px;
  font-weight: bold;
  transition: all ease .2s;
}
.copy a.button:hover {
  color: #222;
  background-color: #B7CD29;
}
.copy a.link {
  color: #999;
  text-decoration: none;
  font-size: .7em;
  margin-right: 10px;
}


@media only screen and (max-width: 1000px) {
  .heroBase {
    width:100vw;
    height: 800px;
    clip-path: polygon(0 0, 100% 0, 100% 450px, 0 550px);
  }
  .hero {
    width:100vw;
    height: 800px;
    clip-path: polygon(0 0, 100% 0, 100% 450px, 0 550px);
  }
  .laptop {
    position: relative;
    right: auto;
    left:auto;
    position: absolute;
    top: auto;
    transform: none;
    width: 98vw;
    margin-left: 1vw;
  }
  .copy {
    position: relative;
    top: auto;
    transform: none;
    left: 0px;
    padding: 40px 12vw 80px;
    width: auto;
  }
  .copy h1 {
    font-size: 35px;
    line-height: 30px;
    margin: .7em 0 .7em 0px;
  }
}
