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

body {
  font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
  margin: 0;
  /*background: #eee;*/
  background: #fff;
  height: auto;
}

h1 {
  font-weight: 400;
  font-size: 10rem;
  text-transform: Capitalize;
  margin: 0;
}

h2 {
  font-weight: 400;
  font-size: 2.2rem;

  margin: 0;
}

img {
  display: block;
  width: auto;
  padding-left: 1rem;
  padding-top: 1rem;
}

main {
  /*max-width: 900px;*/
  margin: auto;
  box-shadow: 30px 0px 40px rgba(0, 0, 0, 0.1),
    -30px 0px 40px rgba(0, 0, 0, 0.1);
}

#landing {
  background: #000;
}

#landing-text {
  display: flex;
  flex: 0 1 40vw;
  height: 50vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-right: 1rem;
  padding-left: 1rem;
  color: #fff;
}

#landing-text h2 {
  color: #fff;
}

#landing-image {
  background: url('images/hero.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 70vh;
  flex: 0 1 60vw;
  margin: 0;
}

.btn {
  padding: 0.5rem 2rem;
  border: 1px #ccc solid;
  display: inline-block;
  margin: 2rem 0 0;
  border-radius: 3px;
  text-decoration: none;
  color: #fff;
  transition: background 500ms ease;
}
.btn2 {
  padding: 0.5rem 2rem;
  border: 1px #ccc solid;
  display: inline-block;
  margin: 2rem 0 0;
  border-radius: 3px;
  text-decoration: none;
  color: #fff;
  transition: background 500ms ease;
}

.btn:hover {
  background: #fff;
  color: #000;
}

.btn2:hover {
  background: #fff;
  color: #000;
}

#header {
  padding: 1.5rem;
  text-align: center;
  background: #000;
  color: #fff;
}

#header h2 {
  border-left: dotted 1px #fff;
  border-right: dotted 1px #fff;
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
}

#captionDiv {
    border-bottom:1px dotted #000;
    margin-bottom: 1rem;
}

.caption {
  padding: 0.8rem;
  text-align: justify;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  margin: auto;
  background-color: #000;
  color: #fff;
}

footer h3 {
  font-size: 3rem;
  margin-bottom: 0;
  color: #fff;
}


.contact__link {
    display: inline-block;
    margin: 0 25px;
    font-weight: bold;
    font-color: #000
    font-size: 1.25rem;
}


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

  #landing-text {
    height: 100vh;
  }

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

Screen Sizes 700px and Up
@media (min-width: 700px) {
  .btn {
    padding: 1rem 3rem;
  }
}
