@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,900&display=swap');
/* @credit https://codepen.io/bradtraversy */
@import url('https://fonts.googleapis.com/css?family=PT+Sans');
/* @import url('https://lagostays.com/beta-styles.css'); */
/* https://codepen.io/robinsavemark/pen/qOJgPZ */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #eee;
  height: auto;
}


h3 {
	font-family: Gill Sans, Verdana;
	font-size: 11px;
	line-height: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: bold;
    color: var(--textColor);
}
h2 {
        font-family: times, Times New Roman, times-roman, georgia, serif;
	color: #444;
	margin: 0;
	padding: 0px 0px 6px 0px;
	font-size: 51px;
	line-height: 44px;
	letter-spacing: -2px;
	font-weight: bold;
    color: var(--textColor);
}

h1 {
        font-family: times, Times New Roman, times-roman, georgia, serif;
    color: #444;
    margin: 0;
    padding: 0px 0px 6px 0px;
    font-size: 51px;
    line-height: 44px;
    letter-spacing: -2px;
    font-weight: bold;
    color: var(--textColor);
}

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



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

#landing {
  background: #fff;
}

#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;
}

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

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

.btn {
  padding: 0.5rem 2rem;
  border: 1px #ccc solid;
  display: inline-block;
  margin: 2rem 0 0;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  /* transition: background 500ms ease; */
  transition: all 0.5s ease;

}

.btn:hover {
  background: #f4f4f4;
}

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

#header h2 {
  border-left: dotted 1px #fff;
  border-right: dotted 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;
}



/* 404 */
.error {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #fefcfc;
}
.error__content {
  text-align: center;
}
.error__title {
  font-size: 10rem;
  font-weight: 900;
  color: #ffffff;
}
.error__text {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}
.error__button {
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px #fa5757 solid;
  border-radius: 50px;
  text-decoration: none;
  color: #fbfafa;
  transition: all 0.3s ease-in-out;
}
.error__button:hover {
  background: #fcfbfb;
}

.error__button--active {
  background: #333;
  color: #939393;
}


/* End 404 */







/* TODO fix this: */
/* 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;
  }

}


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

  #landing-text {
    height: 100vh;
  }

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