* {
  margin: 0;
  padding: 0;
  color: #efefef;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: lighter;
}

.body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #292d3f;

}

.small-icon {
  color: white;
  font-size: 20px;
}

.large-icon {
  color: white;
}

.header {
  width: 100vw;
  box-sizing: border-box;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: fixed;
  background-color: #292d3f;
}

.header__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  font-weight: lighter;
  font-family: "Pompiere", cursive;
}

.title {
  font-size: 20px;
  font-weight: normal;
  color: #efefef;
}
.header__nav__items {
  display: flex;
}

.header__nav .sub-section {
  display: flex;
  color: #efefef;
  text-decoration: none;
  font-size: 15px;
  margin: 15px;
  border: none;
}

.main {
  width: 100vw;
  margin-top: 110px;
  margin-bottom: 40px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.home {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.home-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.profile-pic {
  margin: 30px 0 30px 0;
  border-radius: 50%;
  max-width: 250px;
  height: auto;
}

.blurb {
  max-width: 1100px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.blurb-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.blurb-info p {
  margin: 20px;
  font-size: 20px;
  color: #444;
  text-align: center;
}

.project {
  box-sizing: border-box;
  padding: 10px;
}

.project__title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 15px;
  /* color: #444; */
}

.project__tools {
  margin-bottom: 20px;
  text-align: center;
}
.project__tools-text {
  color: #efefef;
}

.project__tools i {
  font-size: 30px;
  margin: 5px;
  text-align: center;
}

.project__info {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px;
  align-items: center;
  text-align: center;
  font-size: 20px;
  font-weight: bolder;
  /* background-color: rgba(255, 255, 255, 0.123); */
  border-radius: 2px;
}

.last-project {
  border: none;
}

.project__img-container {
  flex: 1;
  max-width: 700px;
}

.project__img {
  height: auto;
  max-width: 100%;
  border-radius: 4px;
}

.project__description {
  flex: 1;
  max-width: 100%;
  color: #efefef;
}

.social-header {
  text-decoration: none;
  margin: 5px;
  font-size: 10px;
}

.about {
  max-width: 1100px;
}

.about__title {
  font-size: 20px;
  font-weight: normal;
  color: #efefef;
  text-align: center;
}
.home__title {
  font-family: "Comfortaa", cursive;
  font-size: 27px;
  font-weight: normal;
  color: #efefef;
  text-align: center;
}

.home__occupation {
  font-size: 25px;
  padding: 5px;
}
.home__tools {
  font-size: 20px;
}
.home__location {
  font-size: 15px;
}

.social {
  color: #363636;
  font-size: 1.2em;
  text-decoration: none;
}

.social__icon__bar {
  transition: 0.4s;
}

.social__icon__bar:hover {
  color: #f4c47c;
  /* color: rgb(255, 136, 24); */
}

.social__icon {
  transition: 0.4s;
}

.social__icon:hover {
  /* color: rgb(0, 102, 102); */
  color: #f4c47c;
}

.about__body {
  font-size: 18px;
  margin: 20px;
  letter-spacing: 1.3;
}

.connect {
  margin-top: 50px;
  text-align: center;
  font-size: 20px;
}

.connect__heading {
  margin: 10px 10px 10px 0;
}

.connect__icons {
  margin: 10px 10px 10px 0;
  padding-left: 0;
}

.redux {
  height: 30px;
}

.firebase {
  height: 30px;
  margin-left: 8px;
}

.project__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.project__link {
  font-size: 16px;
  width: 150px;
  margin: 30px 5px 0 5px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 40px;
  background-color: #56608b;
  transition: 0.3s;
}

.project__link a {
  text-decoration: none;
  color: #efefef;
}

.project__link:hover {
  cursor: pointer;
  background-color: #12172eea;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: 60px;
  background-color: #292d3f;

  /* background-color: rgb(0, 102, 102); */
}
.footer__copyright {
  font-size: 14px;
  color: silver;
  font-style: italic;
}
.footer__social {
  padding: 5px;
  width: 100%;
  max-width: 300px;
  display: flex;
  justify-content: space-between;
}

@media only screen and (min-width: 1000px) {
  .title {
    font-size: 30px;
    font-weight: normal;
    color: #efefef;
  }

  .project {
    display: flex;
    justify-content: center;
  }
  .project__description {
    padding-left: 10px;
  }
  .project__info {
    flex-direction: row;
    max-width: 1100px;
  }
  .home__title {
    font-size: 40px;
  }
  .home__occupation {
    font-size: 30px;
  }
  .home__tools {
    font-size: 25px;
  }

  .home__location {
    font-size: 20px;
  }

  .about__title {
    font-size: 40px;
  }

  .about__body {
    font-size: 25px;
  }
  .connect {
    font-size: 30px;
  }
}

.box-shadow {
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.301);
}
