html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: black;
  line-height: 1.3;
  overflow-x: hidden;
}

body, html {
  overflow-x: hidden;
}

.container {
  max-width: 75.375rem;
  margin: 0 auto;
}

.container--pall {
  padding-top: 4.375rem;
  padding-right: 1.25rem;
  padding-bottom: 4.375rem;
  padding-left: 1.25rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-fd-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-jc-se {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.flex-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.linkedin {
  color: white;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

.linkedin:hover {
  color: #0077b5;
}

@media (max-width: 63.9375em) {
  .linkedin {
    color: black;
    font-size: 1rem;
  }
}

.github {
  color: white;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

.github:hover {
  color: purple;
}

@media (max-width: 63.9375em) {
  .github {
    color: black;
    font-size: 1rem;
  }
}

.twitter {
  color: white;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

.twitter:hover {
  color: #55acee;
}

@media (max-width: 63.9375em) {
  .twitter {
    color: black;
    font-size: 1rem;
  }
}

.header {
  background: black;
}

.header nav {
  background-color: black;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.header__logo img {
  width: 2.5rem;
  height: 2.5rem;
  -webkit-filter: invert(100%);
          filter: invert(100%);
}

.header__logo--dark img {
  width: 2.5rem;
  height: 2.5rem;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.hero__heading {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(196, 196, 196, 0.26);
  width: 113%;
  padding-top: 3.6875rem;
  padding-bottom: 5.688rem;
  margin-top: 4.6875rem;
  margin-bottom: 4.6875rem;
  z-index: 1;
}

@media (min-width: 40em) {
  .hero__heading {
    width: 78%;
    margin-left: 0%;
    margin-right: 5rem;
    padding-left: 1rem;
  }
}

@media (min-width: 64em) {
  .hero__heading {
    width: 66%;
    margin-right: 7rem;
    padding-bottom: 3.688rem;
  }
}

@media (min-width: 87.5em) {
  .hero__heading {
    width: 57%;
  }
}

.hero__rectangle {
  background-color: black;
  color: white;
  width: 17.711rem;
  padding-top: 3.6875rem;
  padding-bottom: 6.688rem;
  padding-left: 1rem;
  margin-top: -4.312rem;
  margin-right: -15rem;
  margin-bottom: -3.312rem;
  margin-left: -4rem;
  -webkit-transform: rotate(8.67deg);
          transform: rotate(8.67deg);
  z-index: -1;
}

@media (min-width: 40em) {
  .hero__rectangle {
    width: 85%;
    margin-left: -10rem;
    margin-bottom: -6.312rem;
  }
}

@media (min-width: 64em) {
  .hero__rectangle {
    width: 72%;
    margin-top: -10.312rem;
    margin-bottom: -11.312rem;
  }
}

@media (min-width: 87.5em) {
  .hero__rectangle {
    width: 88%;
    margin-left: -13rem;
    margin-right: -27rem;
  }
}

.hero__text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.16rem;
  line-height: 2.5rem;
  padding-left: 1rem;
  color: rgba(71, 83, 94, 0.89);
}

.hero__text b {
  color: rgba(0, 0, 0, 0.767);
  font-weight: 700;
}

@media (min-width: 40em) {
  .hero__text {
    font-size: 1.5rem;
    line-height: 3rem;
  }
}

@media (min-width: 64em) {
  .hero__text {
    font-size: 2.2rem;
    line-height: 3.5rem;
  }
}

.hero__social {
  position: absolute;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  top: 70%;
  left: 33%;
  z-index: 1;
}

@media (min-width: 40em) {
  .hero__social {
    left: 32%;
    top: 73%;
  }
}

@media (min-width: 64em) {
  .hero__social {
    left: 74%;
    top: 46%;
  }
}

.about {
  padding-top: 4.437rem;
  padding-bottom: 4.437rem;
  background-color: white;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.about__text {
  margin: -1.187rem 1rem;
  text-align: center;
}

@media (min-width: 40em) {
  .about__text {
    font-size: 1.4rem;
    margin: 2.8125rem 0.5rem;
    text-align: left;
  }
}

.about__text h2 {
  font-family: 'DM Serif Display', serif;
  margin: 0 0 4.437rem 0;
}

.about__text b {
  font-family: 'DM Serif Display', serif;
}

@media (min-width: 40em) {
  .about__text b {
    font-size: 1.4rem;
  }
}

.about__text p {
  color: rgba(78, 77, 77, 0.85);
  font-size: 1rem;
  margin: 2.5rem 0;
  line-height: 1.6;
}

@media (min-width: 40em) {
  .about__text p {
    font-size: 1.2rem;
  }
}

.seperator {
  margin: 0 1.5rem;
}

.seperator__line1 {
  width: 50px;
  height: auto;
  border: 2px solid black;
  border-radius: 10px;
}

.seperator__line2 {
  width: 25px;
  height: auto;
  border: 2px solid black;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 10px;
}

.seperator__line3 {
  width: 25px;
  height: auto;
  border: 2px solid black;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -0.7rem;
  border-radius: 10px;
}

.seperator__line4 {
  width: 25px;
  height: auto;
  border: 2px solid black;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -0.7rem;
  margin-right: -0.3rem;
  border-radius: 10px;
}

.seperator__line5 {
  width: 25px;
  height: auto;
  border: 2px solid black;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-left: -0.3rem;
  margin-right: -0.7rem;
  border-radius: 10px;
}

.seperator__line6 {
  width: 25px;
  height: auto;
  border: 2px solid black;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-right: -0.7rem;
  border-radius: 10px;
}

.seperator__line7 {
  width: 25px;
  height: auto;
  border: 2px solid black;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 10px;
}

.seperator__line8 {
  width: 50px;
  height: auto;
  border: 2px solid black;
  border-radius: 10px;
}

.project {
  padding-top: 4.437rem;
  padding-bottom: 4.437rem;
}

.project__content {
  text-align: center;
}

@media (min-width: 40em) {
  .project__content {
    text-align: left;
  }
}

.project__content a {
  color: black;
  text-decoration: none;
}

.project__content a:hover {
  color: rgba(78, 77, 77, 0.85);
  text-decoration: none;
}

.project__content h2 {
  font-family: 'DM Serif Display', serif;
  margin: 0 0 4.437rem 0;
}

.project__1 {
  padding-top: 4.437rem;
  cursor: pointer;
  width: 100%;
  margin-bottom: 3rem;
}

@media (min-width: 40em) {
  .project__1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    overflow: hidden;
    -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    border-radius: 10px;
    background-color: rgba(196, 196, 196, 0.26);
    padding: 1rem;
  }
  .project__1:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.project__image1 {
  background-image: url(/images/project-1/the-schedule-guy.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 24.4375rem;
  width: 100%;
  border-radius: 10px;
}

@media (min-width: 40em) {
  .project__image1 {
    width: 50%;
  }
}

.project__2 {
  padding-top: 4.437rem;
  cursor: pointer;
  width: 100%;
  margin-bottom: 3rem;
}

@media (min-width: 40em) {
  .project__2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    overflow: hidden;
    -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    border-radius: 10px;
    background-color: rgba(196, 196, 196, 0.26);
    padding: 1rem;
  }
  .project__2:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.project__image2 {
  background-image: url(/images/project-2/contact-management.png);
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
  min-height: 24.4375rem;
  width: 100%;
  border-radius: 10px;
}

@media (min-width: 40em) {
  .project__image2 {
    width: 50%;
  }
}

.project__3 {
  padding-top: 4.437rem;
  cursor: pointer;
  width: 100%;
  margin-bottom: 3rem;
}

@media (min-width: 40em) {
  .project__3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    overflow: hidden;
    -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    border-radius: 10px;
    background-color: rgba(196, 196, 196, 0.26);
    padding: 1rem;
  }
  .project__3:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.project__image3 {
  background-image: url(/images/project-3/star-wars-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  min-height: 24.4375rem;
  width: 100%;
  border-radius: 10px;
}

@media (min-width: 40em) {
  .project__image3 {
    width: 50%;
  }
}

.project__description {
  margin-top: 1.75rem;
  width: 100%;
}

@media (max-width: 63.9375em) {
  .project__description {
    margin-bottom: 3rem;
  }
}

@media (min-width: 40em) {
  .project__description {
    width: 50%;
  }
}

@media (min-width: 40em) {
  .project__description {
    margin: 1rem;
  }
}

.project__description b {
  font-family: 'DM Serif Display', serif;
}

@media (min-width: 40em) {
  .project__description b {
    font-size: 1.4rem;
  }
}

.project__description p {
  color: rgba(78, 77, 77, 0.85);
  font-size: 1rem;
  margin-top: 1rem;
}

.project__link {
  color: black !important;
  text-decoration: underline;
  margin: 0 2rem;
}

.project__link:hover {
  color: black !important;
}

.project__link i {
  margin-left: 0.5rem;
}

.project__more {
  text-align: center;
  margin-top: 7rem !important;
}

@media (min-width: 40em) {
  .project__more {
    margin-bottom: 2.437rem !important;
  }
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(78, 77, 77, 0.85);
  font-size: 1rem;
  padding-top: 4.437rem;
  padding-bottom: 4.437rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

@media (min-width: 40em) {
  .contact {
    font-size: 1.2rem;
  }
}

.contact__email a {
  font-family: 'DM Serif Display', serif;
  cursor: pointer;
  color: black;
  font-weight: 400;
}

.contact__email a i {
  margin-left: 0.2rem;
}

.footer {
  background-color: black;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 64em) {
  .footer {
    padding: 0;
  }
}

.footer__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.5fr 2fr 0.5fr;
      grid-template-columns: 0.5fr 2fr 0.5fr;
  -ms-grid-rows: 1fr 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr 1fr;
      grid-template-areas: "logo . ." ". social ." ". year ." ". . .";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  font-size: 0.98rem;
}

@media (min-width: 64em) {
  .footer__content {
    -ms-grid-columns: 0.5fr 2fr 0.5fr;
        grid-template-columns: 0.5fr 2fr 0.5fr;
    -ms-grid-rows: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-areas: ". . ." "logo year social" ". . .";
  }
}

.footer__logo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: logo;
  -ms-grid-column-align: center;
      justify-self: center;
}

.footer__logo img {
  width: 2.5rem;
  height: 2.5rem;
  -webkit-filter: invert(100%);
          filter: invert(100%);
}

.footer__btt {
  grid-area: btt;
  -ms-grid-column-align: center;
      justify-self: center;
  color: white;
}

.footer__social {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: social;
  -ms-grid-column-align: center;
      justify-self: center;
}

.footer__social a:not(:last-child) {
  margin-right: 1rem;
}

.footer__linkedin {
  color: white;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

.footer__linkedin .fa-2x {
  font-size: 1.5em;
}

.footer__linkedin:hover {
  color: #0077b5;
}

.footer__github {
  color: white;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

.footer__github .fa-2x {
  font-size: 1.5em;
}

.footer__github:hover {
  color: purple;
}

.footer__twitter {
  color: white;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

.footer__twitter .fa-2x {
  font-size: 1.5em;
}

.footer__twitter:hover {
  color: #55acee;
}

.footer__mail {
  color: white;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

.footer__mail .fa-2x {
  font-size: 1.5em;
}

.footer__mail:hover {
  color: #d60505;
}

.footer__year {
  font-family: 'DM Serif Display', serif;
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: year;
  -ms-grid-column-align: center;
      justify-self: center;
  color: white;
}

.project1 {
  padding-top: 2.437rem;
  padding-bottom: 4.437rem;
  line-height: 1.7;
}

.project1__intro h1 {
  font-family: 'DM Serif Display', serif !important;
  margin: 0 0 2.437rem 0;
}

.project1__intro p {
  color: rgba(78, 77, 77, 0.85);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.project1__image1 {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
}

.project1__text p {
  color: rgba(78, 77, 77, 0.85);
  font-size: 1.2rem;
  margin: 3rem 0;
}

.project1__link {
  line-height: 1.3;
}

.project1__link h5 {
  font-weight: 600;
}

.project1__link p {
  font-size: 1rem;
  color: black;
  margin: 0.5rem 0;
}

.project1__link a {
  color: black;
}

.project1__link a:hover {
  text-decoration: underline;
  color: goldenrod;
}

.project1__link a i {
  margin-left: 0.5rem;
}

.project1__grid {
  width: 100%;
  height: auto;
}

.project1__grid .img-fluid {
  margin: 3rem 0;
  width: 90%;
  height: auto;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
}

.project1 a {
  color: black;
}

.project1 a:hover {
  text-decoration: underline;
  color: goldenrod;
}

.project1 a i {
  margin-left: 0.5rem;
}

@media (max-width: 63.9375em) {
  .project1 a {
    text-decoration: underline;
  }
}

.project2 {
  padding-top: 2.437rem;
  padding-bottom: 4.437rem;
  line-height: 1.7;
}

.project2__intro h1 {
  font-family: 'DM Serif Display', serif !important;
  margin: 0 0 2.437rem 0;
}

.project2__intro p {
  color: rgba(78, 77, 77, 0.85);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.project2__image1 {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
}

.project2__text p {
  color: rgba(78, 77, 77, 0.85);
  font-size: 1.2rem;
  margin: 3rem 0;
}

.project2__link {
  line-height: 1.3;
}

.project2__link h5 {
  font-weight: 600;
}

.project2__link p {
  font-size: 1rem;
  color: black;
  margin: 0.5rem 0;
}

.project2__link a {
  color: black;
}

.project2__link a:hover {
  text-decoration: underline;
  color: goldenrod;
}

.project2__link a i {
  margin-left: 0.5rem;
}

.project2__grid {
  width: 100%;
  height: auto;
}

.project2__grid .img-fluid {
  margin: 3rem 0;
  width: 90%;
  height: auto;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
}

.project2 a {
  color: black;
}

.project2 a:hover {
  text-decoration: underline;
  color: goldenrod;
}

.project2 a i {
  margin-left: 0.5rem;
}

@media (max-width: 63.9375em) {
  .project2 a {
    text-decoration: underline;
  }
}

.project3 {
  padding-top: 2.437rem;
  padding-bottom: 4.437rem;
  line-height: 1.7;
}

.project3__intro h1 {
  font-family: 'DM Serif Display', serif !important;
  margin: 0 0 2.437rem 0;
}

.project3__intro p {
  color: rgba(78, 77, 77, 0.85);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.project3__image1 {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
}

.project3__text p {
  color: rgba(78, 77, 77, 0.85);
  font-size: 1.2rem;
  margin: 3rem 0;
}

.project3__link {
  line-height: 1.3;
}

.project3__link h5 {
  font-weight: 600;
}

.project3__link p {
  font-size: 1rem;
  color: black;
  margin: 0.5rem 0;
}

.project3__link a {
  color: black;
}

.project3__link a:hover {
  text-decoration: underline;
  color: goldenrod;
}

.project3__link a i {
  margin-left: 0.5rem;
}

.project3__grid {
  width: 100%;
  height: auto;
}

.project3__grid .img-fluid {
  margin: 3rem 0;
  width: 90%;
  height: auto;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
}

.project3 a {
  color: black;
}

.project3 a:hover {
  text-decoration: underline;
  color: goldenrod;
}

.project3 a i {
  margin-left: 0.5rem;
}

@media (max-width: 63.9375em) {
  .project3 a {
    text-decoration: underline;
  }
}
/*# sourceMappingURL=style.css.map */