* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Heebo';
  margin: 0 auto;
}

.intro {
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.intro-text {
  color: rgb(233, 233, 233);
  font-family: monospace;
}
.hide {
  background: black;
  overflow: hidden;
}
.hide span {
  transform: translateY(100%);
  display: inline-block;
}

.landing {
  height: 100vh;
  width: 100%;
}

.image-background {
  background: url('images/portfolio-background.jpg') center center no-repeat;
  background-size: cover
}

.overlay {
  background: #000000;
  opacity: 0.1;
}

.heading {
  font-size: 30px;
}

.text-blue {
 color: #5091da;
}

.lobster {
  font-family: 'Lobster', cursive;
}

.name {
  font-size: 60px;
  font-family: 'Lobster', cursive;
  text-transform: capitalize;
  transition: 250ms ease;
}

.circle-border {
  border: 1px solid black;
  border-radius: 50%;
  padding: 1rem 1.3rem;
  font-size: 2rem;
}

.navigation {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
}

.nav-link {
  color:black
}

.nav-item:hover {
  color: #5091da;
}

.bg-about {
  -webkit-box-shadow: 5px 5px 12px 1px rgba(0,0,0,0.6);
  box-shadow: 5px 5px 12px 1px rgba(0,0,0,0.6);
}

.profile {
  border-radius: 50%;
  -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
  box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
}

.github, .resume {
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
}

.project-thumbnail {
  width: 325px;
  height: 300px;
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
}

.project-thumbnail:hover,
.github:hover,
.resume:hover {
  opacity: .8;

}
.tech-logo {
  width: 6rem;
  height: auto;
  transition: .5s ease;
}

.tech-logo:hover {
  transform: translateY(-20px);
}
.social i, i {
  margin: 1rem;
  border: 1px solid black;
  padding: 1rem;
  font-size: 1.5rem;
  transform: scale(1);
  transition: 500ms ease;
}
.social i:hover, i:hover {
  color: white;
  background-color: #5091da;
  transform: scale(1.2)
}

@media only screen and (max-width: 767px) {
  .about-description {
    margin-top: 20px;
  }
}
