html, body {
  width: 100%;
  height: 100lvh; 
  margin: 0; 
  padding: 0; 
}

* {
  box-sizing: border-box;
}

a {
  color: #b99800; 
  text-decoration: none; 
}
a:hover {
  color: #ffd201; 
}

#splash-container {
  width: 100%; 
  min-height: 100%; 
  display: flex; 
  flex-flow: row wrap; 
}

#splash-left {
  width: 50%; 
  min-height: 100%;
  display: flex; 
  background-image: url('./workspace.jpg'); 
  background-size: 50%; 
  background-repeat: no-repeat; 
  background-position: center bottom; 
  background-color: #d9d9d9; 
  display: flex; 
  flex-flow: column nowrap; 
  align-items: center; 
  border-bottom: 1px solid #ccc; 
  z-index: 1337; 
}
#splash-left h1 {
  font-family: 'Oswald', sans-serif; 
  font-weight: bold; 
  font-size: 6em; 
  text-transform: uppercase; 
  color: #fff; 
  margin-bottom: 20px; 
  text-shadow: 5px 5px 0px #666; 
  text-align: center; 
}
#splash-left h2 {
  font-family: 'Montserrat', sans-serif; 
  font-weight: normal;
  color: #666; 
  font-size: 1.5em; 
}

#splash-right {
  width: 50%; 
  min-height: 100%; 
  background-color: #3f3f3f; 
  display: flex;
  flex-flow: column nowrap; 
  align-items: center; 
  justify-content: center; 
  border-bottom: 1px solid #ccc; 
  z-index: 1337; 
}
#splash-right #navigation a {
  display: block; 
  text-align: center; 
  color: #fff; 
  padding-bottom: 5px; 
  margin-bottom: 10px; 
  margin-top: 10px; 
  font-family: 'Oswald', sans-serif; 
  text-decoration: none; 
  font-size: 1.2em; 
}

@media only screen and (max-width: 612px) {
  #splash-left { 
	width: 100%; 
	background-image: none;
  }
  #splash-left h1 {
    font-size: 5em; 
  }
  #splash-right {
	width: 100%; 
  }
}

#sidebar {
  position: fixed; 
  top: 0; 
  bottom: 0; 
  right: 0; 
  height: 100%; 
  border-left: 1px solid #ccc; 
  width: 20vw; 
  display: flex; 
  flex-flow: column nowrap; 
  justify-content: center; 
  color: #FFD102; 
}
#sidebar #title {
  position: absolute; 
  right: 0; 
  top: 0; 
  z-index: 42; 
  background-color: #3f3f3f; 
  color: #fff; 
  font-family: 'Oswald', sans-serif; 
  width: 100%; 
  box-sizing: border-box; 
  padding: 10px; 
  text-align: center; 
  text-transform: uppercase; 
  font-weight: bold; 
  font-size: 2em; 
  border-bottom: 7px solid #ffd102; 
}

#sidebar #links a:first-child {
  border-top: 1px solid #ccc; 
}
#sidebar #links a {
  font-family: 'Oswald', sans-serif; 
  font-size: 1.2em; 
  box-sizing: border-box; 
  padding: 10px; 
  border-bottom: 1px solid #ccc; 
  text-decoration: none; 
  color: #3f3f3f; 
  display: block; 
  text-align: center; 
  transition: background-color 0.4s; 
  -moz-transition: background-color 0.4s; 
  -webkit-transition: background-color 0.4s; 

}
#sidebar #links a:hover {
  background-color: #efefef; 
  transition: background-color 0.4s; 
  -moz-transition: background-color 0.4s; 
  -webkit-transition: background-color 0.4s; 
}

@media only screen and (max-width: 612px) {
  #sidebar {
	display: none; 
  }
}

#content {
  min-height: 100%; 
  margin-right: 20vw; 
  box-sizing: border-box; 
  //    padding: 25px 75px; 
  color: #3f3f3f; 
}

@media only screen and (max-width: 612px) {
  #content {
	margin-right: 0; 
  }
}

#content h1 {
  margin: 25px 75px; 
  font-size: 2em; 
  font-family: 'Oswald', sans-serif; 
  margin-top: 60px; 
  padding: 8px; 
  border-top: 5px solid #ffd102; 
  background-color: #efefef; 
  text-transform: uppercase; 
}
#content > p {
  margin: auto 75px; 
}
#content p, ul, li {
  color: #212121; 
  font-family: 'Montserrat', sans-serif; 
  line-height: 1.4; 

}
#content .container {
  margin: auto 75px; 
  display: flex; 
  flex-flow: row wrap; 
}
#content .left {
  width: 50%; 
}
#content .right {
  width: 50%; 
  text-align: right; 
}
#content .right img {
  max-width: 100%; 
}

#content .box {
  margin: auto 75px;
}

@media only screen and (max-width: 612px) {
  #content .box {
    margin: auto 28px;
  }
  #content > h1 {
    margin: 25px 25px;
  }
  #content > p {
    margin: auto 25px;
  }
  #content .container {
    margin: auto 25px;
  }
  #content .left, #content .right {
	width: 100%; 
  }
}

.showcase {
  width: 100%; 
  padding: 40px; 
  text-align: center; 
  font-family: 'Montserrat', sans-serif; 
  display: flex; 
  flex-flow: row wrap; 
  align-items: center; 
}

.email {
  font-size: 2.5em; 
  margin: 25px 75px; 
  font-family: 'Oswald', sans-serif; 
}

.showcase .thumbnail {
  max-width: 50%; 
  -ms-transform: rotate(-3deg); 
  -webkit-transform: rotate(-3deg); 
  transform: rotate(-3deg); 
  margin-right: 60px; 
}
.showcase .thumbnail img {
  width: 100%; 
  border: 1px solid #ccc; 
}
.showcase .description {
  width: 40%; 
  align-self: flex-start; 
  text-align: right; 
}

@media only screen and (max-width: 612px) {
  .showcase .thumbnail, .showcase .description {
	width: 100%; 
  }
  .showcase .thumbnail {
	max-width: 100%; 
	transform: none; 
	-webkit-transform: none; 
	-moz-transform: none; 
  }
  .showcase .description {
	text-align: center; 
  }
  .email {
    font-size: 1.2em;
    margin: 25px 25px; 
  }
}

#footer {
  width: 100%; 
  margin-top: 60px; 
  color: #fff; 
  background-color: #3f3f3f; 
  box-sizing: border-box; 
  padding: 15px; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.8em; 
  text-align: right; 
}

/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #ffd102;
  height: 3px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}

form {
  font-family: 'Montserrat', sans-serif; 
  padding: 15px;
  border: 1px dashed #ffd102;
  background-color: #efefef;
  border-radius: 20px;
}
form > .flex {
  display: flex;
  margin-bottom: 10px;
}
form > .flex > .label {
  width: 15%;
  min-width: 150px;
  text-align: right;
  padding: 8px;
  padding-right: 10px;
  font-weight: bold; 
}
input, textarea {
  font-family: 'Montserrat', sans-serif; 
  width: 75%;
  min-width: 200px;
  border: 0;
  outline: 0;
  padding: 8px;
}
textarea {
  height: 150px;
}
button {
  font-family: 'Oswald', sans-serif;
  background-color: #ffd102;
  font-size: 1.2em; 
}

@media only screen and (max-width: 612px) {
  form > .flex {
    flex-direction: column; 
  }
  form > .flex > .label {
    width: 100%;
    text-align: center; 
  }
  input, textarea {
    width: 100%; 
  }
}
