@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed");
/*resets all the padding and margins to 0 */
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Roboto Condensed", sans-serif;
  margin: 0;
  background: #eee;
  height: auto;
}
h1 {
  font-weight: 400;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin: 0;
}
h2 {
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: capitalize;
  margin: 0;
}
img {
  display: block;
  width: 100%;
  
  
}
main {
  max-width: 1000px;
  margin: auto;
  box-shadow: 30px 0px 40px rgba(0, 0, 0, 0.3),
    -30px 0px 40px rgba(0, 0, 0, 0.3);
}

#landing {
  background: rgb(204, 204, 204);
}

#landing-text {
  display: flex;
  flex: 0 1 40vw;
  height: 40vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-right: 1rem;
  padding-left: 1rem;
}
#landing-text h1 {
  text-shadow: 2px 2px 10px rgb(34, 34, 34);
}
#landing-text h2 {
  color: #888;
}
.btn {
  padding: 0.5rem 2rem;
  border: 2px solid #888;
  display: inline-block;
  margin: 2rem 0 0;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  transition: background 500ms ease;
}
.btn:hover {
  background: #9e9e9e;
  color: #fff;
}

#landing-image {
  background: url("/media/photography-media/images/fs/rolleicordRight.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 60vh;
  flex: 0 1 60vw;
  margin: 0;
}
#header {
  padding: 1.5rem;
  text-align: center;
  background: #333;
  color: #fff;
}
#header h2 {
  border-left: solid 1px #fff;
  border-right: solid 1px #fff;
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
}
.caption {
  padding: 0.8rem;
  text-align: center;
}
footer {
  text-align: center;
  padding: 2rem 1rem;
  margin: auto;
  color: #333;
}
#footer h3 {
  font-size: 3rem;
  margin-bottom: 0;
}
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  width: 50px;
  height: 70px;
  opacity: 50%;
  font-size: 30px;
  color: #666;
  background: #a8c7bb;

}
@media (min-width: 500px) {
  #landing {
    display: flex;
    height: 100%;
  }
  #landing-text {
    height: 100vh;
  }
  #landing-image {
    height: 100vh;
  }
}
@media (min-width: 700px) {
  .btn {
    padding: 1rem 3rem;
  }
}
