@import url("https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,700;1,300;1,400&display=swap");
html,
body,
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

#background {
  position: relative;
}

#background:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-image: url("../assets/images/code-background.jpg");
  background-position: fixed;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

header {
  background-color: transparent;
}

.navbar {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 84px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .navbar-logo {
  width: 48px;
  height: 48px;
}

.navbar .navbar-logo a img {
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navbar .navbar-logo a img:hover {
  z-index: 5;
  cursor: pointer;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.navbar .navbar-list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 200px;
}

.navbar .navbar-list .navbar-list-items {
  margin-right: 32px;
}

.navbar .navbar-list .navbar-list-items a {
  text-decoration: none;
  color: black;
  padding-bottom: 4px;
  border-bottom: 4px solid transparent;
}

.navbar .navbar-list .navbar-list-items a:hover {
  border-bottom: 4px solid #ffd046;
}

.btn {
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.btn-mango-red {
  background-color: #ff8243;
  color: white;
}

.btn-mango-red:hover {
  background-color: #ff6010;
}

.btn-tennis-gray {
  background-color: #24292e;
  color: white;
}

.btn-tennis-gray:hover {
  background-color: #0e1011;
}

.game-modal {
  padding-top: 84px;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.178);
  z-index: 5;
}

.hide {
  display: none;
}

.mango {
  position: absolute;
  width: 64px;
  top: -300px;
  cursor: pointer;
  height: 64px;
  background-image: url("../assets/images/mango.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 20;
  -webkit-transition: all 5s cubic-bezier(0.15, 0.11, 0.86, 1.01);
  transition: all 5s cubic-bezier(0.15, 0.11, 0.86, 1.01);
}

.mango-fall {
  top: 100% !important;
}

.mango-destroy {
  height: 0;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
}

.container h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 300;
}

.fa-github {
  color: #24292e;
}

.fa-linkedin {
  color: #0077b5;
}

/* The typing effect */
@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@-webkit-keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #ffd046;
  }
}
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #ffd046;
  }
}

/* Shake effect of ripe fruits */
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(1px, 1px) rotate(0deg);
            transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
            transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
            transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
            transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
            transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
            transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
            transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    -webkit-transform: translate(3px, 1px) rotate(-1deg);
            transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
            transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    -webkit-transform: translate(1px, 2px) rotate(0deg);
            transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
            transform: translate(1px, -2px) rotate(-1deg);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: translate(1px, 1px) rotate(0deg);
            transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
            transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
            transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
            transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
            transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
            transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
            transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    -webkit-transform: translate(3px, 1px) rotate(-1deg);
            transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
            transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    -webkit-transform: translate(1px, 2px) rotate(0deg);
            transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
            transform: translate(1px, -2px) rotate(-1deg);
  }
}

.run-typing {
  overflow: hidden;
  padding-right: 8px;
  border-right: 4px solid #24292e;
  white-space: nowrap;
  -webkit-animation: typing 3.5s steps(40, end) 1, blink-caret 0.75s step-end infinite;
          animation: typing 3.5s steps(40, end) 1, blink-caret 0.75s step-end infinite;
}

.fruit-shake {
  -webkit-animation: shake 0.3s;
          animation: shake 0.3s;
}

.fruit-shake:hover {
  -webkit-animation: none;
          animation: none;
}

footer {
  padding: 48px 0;
  background-color: #1e152a;
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
}

footer .container a {
  text-decoration: none;
  padding: 4px 6px;
  background-color: #ff8243;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

footer .container a:hover {
  z-index: 5;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.games {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 48px 0;
}

.game-container {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}

.game-modal .game-screen {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 1;
  cursor: url("../../assets/images/knife.svg") 36 36, pointer;
}

.game-modal .game-screen h4 {
  font-size: 48px;
  font-weight: bold;
}

.game-modal .game-screen h4 span {
  font-size: 48px;
  font-weight: bold;
  padding: 4px 6px;
  background: #ffd046;
  border-radius: 5px;
}

.game-modal .game-screen .score-container {
  z-index: 20;
}

.mango-game {
  z-index: 11;
}

.intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.intro .intro-heading h1,
.intro .intro-heading--typing h1 {
  font-family: "Architects Daughter", cursive;
  font-size: 64px;
  color: black;
}

.intro .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.intro .social-icons .fab {
  font-size: 48px;
  margin-right: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.intro .social-icons .fab:hover {
  z-index: 5;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.about {
  min-height: 80vh;
  padding: 36px 0;
}

.about .container h2 {
  margin-top: 36px;
}

.about .container .about-container .about-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 24px 0;
  -webkit-box-shadow: 2px 2px 4px gray;
          box-shadow: 2px 2px 4px gray;
  overflow: hidden;
  border-radius: 8px;
}

.about .container .about-container .about-row .image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}

.about .container .about-container .about-row .image img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.about .container .about-container .about-row .image img:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.about .container .about-container .about-row .about-body {
  padding-left: 48px;
  padding-top: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about .container .about-container .about-row .about-body h4 {
  font-size: 28px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about .container .about-container .about-row .about-body h4 .fas, .about .container .about-container .about-row .about-body h4 .far {
  margin-right: 16px;
  margin-left: 16px;
  font-size: 32px;
}

.about .container .about-container .about-row .about-body .body-para {
  margin-left: 36px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.about .container .about-container .about-row .about-body .body-para p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 20px;
}

.about .container .about-container .about-row .about-body .body-para p .fas, .about .container .about-container .about-row .about-body .body-para p .far {
  font-size: 24px;
  margin-right: 12px;
}

.about .container .about-container .about-row:last-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.about .container .about-container .about-row:last-child .about-body {
  padding-left: 20px;
  padding-right: 48px;
}

.about .container .about-container .about-row:last-child .about-body h4 {
  font-family: "Architects Daughter", cursive;
}

.contact {
  min-height: 60vh;
  padding: 48px 0;
  margin-bottom: 48px;
}

.contact .container {
  height: 100%;
}

.contact .container .form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.contact .container .form-container .contact-us {
  padding: 24px;
  border: 4px solid #ffd046;
  border-radius: 8px;
  width: 40%;
  margin: 0 auto;
  margin-top: 80px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.contact .container .form-container .contact-us .checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact .container .form-container .contact-us .checkbox-container input {
  width: 80px;
}

.contact .container .form-container .contact-us .checkbox-container p {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.contact .container .form-container .contact-us input {
  width: 100%;
  height: 48px;
  margin: 24px 0;
  outline: none;
  border: 1px solid black;
  border-radius: 8px;
  padding-left: 8px;
}

.contact .container .form-container .contact-us input[type="submit"] {
  background-color: #ffd046;
  cursor: pointer;
  border: none;
}

.contact .container .form-container .contact-us input[type="submit"]:hover {
  background-color: #ffc313;
}

.contact .container .form-container .contact-us textarea {
  width: 100%;
  margin: 24px 0;
  outline: none;
  padding-left: 8px;
  padding-top: 8px;
  resize: vertical;
  border: 1px solid black;
  border-radius: 8px;
}

.projects {
  min-height: 70vh;
  padding: 48px 0;
  background-color: #fff7df;
}

.projects .container .project-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: 72px;
}

.projects .container .project-cards .project-card {
  position: relative;
  padding: 16px 20px;
  width: 500px;
  border: 1px solid #ffd046;
  -webkit-box-shadow: 4px 4px 4px #ffd046;
          box-shadow: 4px 4px 4px #ffd046;
  border-radius: 4px;
  margin-bottom: 48px;
}

.projects .container .project-cards .project-card:hover .image-container {
  height: 0px;
}

.projects .container .project-cards .project-card .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.projects .container .project-cards .project-card .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects .container .project-cards .project-card h3 {
  font-size: 32px;
  color: #24292e;
}

.projects .container .project-cards .project-card .tagline {
  color: #818f9d;
  font-size: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #24292e;
  margin-bottom: 24px;
}

.projects .container .project-cards .project-card .desc {
  font-weight: 200;
  margin-bottom: 12px;
}

.projects .container .project-cards .project-card .button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.projects .container .project-cards .project-card .button-container a {
  text-decoration: none;
  background-color: #ffd046;
  color: black;
  padding: 10px 14px;
  border-radius: 4px;
}

.projects .container .project-cards .project-card .button-container a:hover {
  background-color: #ffc313;
}

.projects .container .tech-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 8px 0;
}

.projects .container .tech-container .tech-skills {
  margin: 8px 4px;
}

.projects .container .tech-container .tech-skills span {
  padding: 4px 8px;
  background-color: #ff8243;
  color: white;
  border-radius: 4px;
}

#tennis {
  background-color: black;
  color: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#gameCanvas {
  cursor: cell;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid white;
}

.game-restart {
  text-decoration: none;
  color: white;
  margin: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: red;
}

.game-restart:hover {
  background-color: #ff7575;
}

.hide {
  display: none;
}
/*# sourceMappingURL=main.css.map */