@import url('https://fonts.googleapis.com/css?family=Raleway');

body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  background: #ddd;
  height: auto;
}

h1 {
  font-weight: 400;
  font-size: 3rem;
  margin: 0;
}

h2 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0;
}

img {
  display: block;
  width: 100%;
}

main {
  max-width: 1000px;
  margin: auto;
  box-shadow: 30px 0px 40px rgba(0, 0, 0, 0.4),
  -30px 0px 40px rgba(0, 0, 0, 0.4)
}

#landing {
  background: #fff;
  max-height: fit-content;
}

#landing-text {
  display: flexbox;
  height: 50vh;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-right: 1rem;
  padding-left: 1rem;
}

#landing-text h2 {
  color: #555
}

.btn1 {
  padding: 0.5rem 1rem;
  border: 1px #ccc solid;
  transition: background 500ms ease;
  display: inline-block;
  margin: 1rem 0 0;
  border-radius: 50px;
  text-decoration: none;
  color: #000
}

.btn1:hover {
  background: #4078c0;
  transition: background 500ms ease;
}

@media (min-width: 500px) {
  #landing {
    display: flex;
    height: 100%;
  }

  #landing-text {
    height: 135vh;
  }

  #landing-image {
    height: 60vh;
  }
}
