/* Reset  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main */
html, body {
  font-family: "Lato", sans-serif;
  line-height: 1.7em;
}

html {
  scroll-behavior: smooth;
}

 a {
   text-decoration: none;
 }

 body {
   background: whitesmoke;
   color: #243951;
 }

/* Utility */

.container {
  margin: auto;
  max-width: 1100px;
  overflow: auto;
  padding: 0 20px;
}

.clr {
  clear: both;
}

.btn {
  display: inline-block;
  font-size: 1em;
  background:#243951;
  color: floralwhite;
  padding: 10px 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin: 15px;
}

.github {
  float: left;
}

.deploy {
  float: right;
}

.btn:hover {
  background: #7397bb;
}

#navbar {
  background:#243951;
  color: floralwhite;
  overflow: hidden;
  border-bottom: 3px solid floralwhite;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

#navbar a {
  color: floralwhite;
}

#navbar .logo {
  float: left;
  padding-top: 20px;
}

#navbar ul {
  list-style: none;
  float: right;
}

#navbar ul li {
  float: left;
}

#navbar ul li a {
  display: block;
  padding: 20px;
  text-align: center;
}

#showcase {
  background: url("../img/nh-background-pic.jpg") no-repeat center center/cover;
  /* height: 600px; */
  height: 100vh;
  max-width: 100%;
  color: #e0e2db;
  text-align: center;
  padding-top: 100px;
  border-bottom: 2px solid #157145;
}

#showcase h1 {
  padding: 20px;
  color: floralwhite;
  font-size: 4em;
  line-height: 1.2em;
  text-shadow: -.5px -.5px 0 #243951, .5px -.5px 0 #243951, .5px .5px 0 #243951;
}

#showcase h2 {
  color: floralwhite;
  font-size: 2em;
  line-height: 1.2em;
  text-shadow: -.5px -.5px 0 #243951, .5px -.5px 0 #243951, .5px .5px 0 #243951;
}

#showcase p {
  position: absolute;
  display: inline-block;
  text-align: center;
  bottom: 50px;
}

#about h2 {
  text-decoration: bold;
  font-size: 3em;
  text-align: center;
  padding-top: 90px;
}

#about p {
  margin-bottom: 50px;
}

#portfolio-pic {
  border-radius: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: block;
  margin: auto;
  height: 350px;
}

#projects h2 {
  text-decoration: bold;
  font-size: 3em;
  text-align: center;
  padding-top: 90px;
}

#tech {
  text-decoration: bold;
  font-size: 2em;
  text-align: center;
  margin-bottom: 10px;
}

#projects .project-box {
  text-align: center;
  padding: 50px;
}

#projects .project-box h3 {
  font-size: 2em;
}

#projects .project-pic {
  background: no-repeat center center/cover;
  width: 100%;
  max-height: 500px;
  border-radius: 30px;
  padding: 20px;
}

#projects .project-description h3 {
  text-align: center;
  font-size: 2em;
}

#projects .project-description p {
  text-align: center;
}

#contact h2 {
  text-decoration: bold;
  font-size: 3em;
  text-align: center;
  margin: 90px;
}

#contact h3 {
  margin-top: 40px;
  font-size: 2em;
  text-align: center;
}

#contact .contact-box {
  float: left;
  width: 50%;
  padding: 50px;
  text-align: center;
}

#contact .contact-box i {
  color: #243951
}

#footer {
  text-align: center;
  background: #243951;
  color: floralwhite;
  padding: 20px;
}

#footer ul {
  text-align: center;
  list-style: none;
  float: none;
  margin: 0 auto;
  display: inline;
}

#footer li {
  display: inline;
  text-align: center;
  padding-left: 8px;
}

#footer img {
  height: 25px;
  width: 25px;
  margin: 10px;
}

#footer a {
  display: inline-block;
  color: floralwhite;
  text-align: center;
  vertical-align: middle;
}