* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #eee;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
  display: block;
}

li {
  list-style-type: none;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 4px;
  padding: 60px 0 20px 0;
}

.section-subtitle {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  padding: 20px 0 20px 0;
}

.navbar {
  position: fixed;
  width: 100%;
  min-height: 110px;
  color: #eee;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  box-shadow: 0px 0px 10px 20px rgba(0, 0, 0, 0.5);
}

.navbar-container {
  width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.navbar-container .fa-laptop {
  font-size: 40px;
  padding: 10px;
  cursor: pointer;
}

.navbar-container .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
}

.navbar-container .nav-link {
  padding: 20px;
  transition: all 0.2s ease-in-out;
}

.navbar-container .nav-link:hover {
  background-color: #eee;
  color: #222;
  font-size: 20px;
}

.navbar-container .hamburger {
  display: none;
  padding: 20px 10px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.navbar-container .hamburger .line {
  position: relative;
  width: 30px;
  height: 4px;
  background-color: #eee;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.navbar-container .hamburger .line::before,
.navbar-container .hamburger .line::after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #eee;
  border-radius: inherit;
  transition: all 0.3s ease-in-out;
}

.navbar-container .hamburger .line::before {
  left: 0;
  top: -10px;
}

.navbar-container .hamburger .line::after {
  left: 0;
  top: 10px;
}

.navbar-container .hamburger.active .line {
  background: transparent;
}

.navbar-container .hamburger.active .line::before {
  transform: translateY(10px) rotate(45deg);
}

.navbar-container .hamburger.active .line::after {
  transform: translateY(-10px) rotate(-45deg);
}

.welcome {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.welcome span {
  color: lightseagreen;
}

.welcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-image: url("../img/foto.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 1;
  z-index: -1;
}

.welcome-container {
  width: 1200px;
  display: flex;
  justify-content: flex-end;
}

.motto-bg {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0px 0px 10px 20px rgba(0, 0, 0, 0.5);
}

.motto {
  text-align: center;
  color: #eee;
  font-size: 2rem;
}

.motto p {
  animation-name: fadeIn;
  animation-duration: 2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.motto p:nth-child(1) {
  animation-delay: 1s;
}

.motto p:nth-child(2) {
  animation-delay: 2.5s;
}

.motto p:nth-child(3) {
  animation-delay: 4s;
}

.motto p:nth-child(4) {
  animation-delay: 5.5s;
}

.motto button {
  padding: 10px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.motto .fa-angle-double-down {
  animation-name: bounce;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  font-size: 30px;
  color: #eee;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bounce {
  0% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(-4px);
  }
}

.about-container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.about-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.about-content i {
  font-size: 1.4em;
  padding-right: 10px;
}

.about-content .fa-biking {
  color: #ff5722;
}

.about-content .fa-walking {
  color: #00bcd4;
}

.about-content .fa-flask {
  color: #ffc107;
}

.box {
  padding: 20px;
  text-align: center;
  width: 50%;
}

.box p {
  font-size: 26px;
}

.joke {
  padding: 20px;
  text-align: center;
}

.skills-content {
  display: flex;
  justify-content: center;
}

.skills-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.skills-list li {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
}

.skills-list i {
  font-size: 80px;
}

.fa-html5 {
  color: #fd7e14;
}

.fa-css3-alt {
  color: #2965f1;
}

.fa-sass {
  color: #bf4080;
}

.fa-js {
  color: #f0db4f;
}

.fa-bootstrap {
  color: #7952b3;
}

.fa-react {
  color: #61dafb;
}

.fa-npm {
  color: #CC3534;
}

.fa-node {
  color: #3c873a;
}

.mongo-icon {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.projects-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.card {
  width: 300px;
  border-radius: 20px;
  padding: 20px;
  margin: 10px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.card p {
  margin-top: 20px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 2px 2px 4px 1px #222;
}

.card-title {
  font-size: 20px;
  font-weight: bold;
}

.card-skills {
  font-size: 30px;
}

.card-code {
  display: flex;
  justify-content: center;
}

.card-code a {
  margin: 0 10px;
  padding: 10px;
}

.contact-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.form-wrapper {
  position: relative;
  max-width: 500px;
  border-radius: 10%;
  box-shadow: 0px 0px 20px 1px #a8a8a8;
  overflow: hidden;
}

.page {
  display: block;
  width: 100%;
  height: auto;
}

.form-container {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22% 0px 16% 0px;
}

.form-container button {
  display: block;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  border-radius: 10px;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  outline: none;
  border: 2px solid #5da55f;
  color: #5da55f;
}

.form-container button:hover {
  background-color: #5da55f;
  color: #eee;
}

.input-group {
  position: relative;
  font-size: 18px;
}

.input-group input {
  width: 100%;
  padding: 10px 0 10px 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #222;
  outline: none;
  transition: border-bottom 0.3s ease-in-out;
  font-size: inherit;
}

.input-group .placeholder {
  position: absolute;
  top: 0;
  margin: 10px 0 10px 0;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  color: #5f6368;
}

.input-group textarea {
  resize: none;
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 0 10px 0;
  background-color: transparent;
  border-bottom: 1px solid #222;
  font-size: inherit;
}

.input-group input:focus + .placeholder,
.input-group input:valid + .placeholder,
.input-group textarea:focus + .placeholder,
.input-group textarea:valid + .placeholder {
  transform: translateY(-20px);
  font-size: 12px;
  color: #1a73e8;
}

.input-group input:focus,
.input-group input:valid,
.input-group textarea:focus,
.input-group textarea:valid {
  border-bottom: 1px solid #1a73e8;
}

footer {
  background-color: #111;
  padding: 20px 0 20px 0;
}

.footer-container {
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-container ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-container li {
  padding: 10px;
  margin: 10px;
  cursor: pointer;
}

.footer-container p {
  padding: 20px;
}

.footer-container i {
  font-size: 40px;
}

@media screen and (max-width: 600px) {
  .navbar-container .nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0vh;
    overflow: hidden;
    flex-direction: column;
    background-color: #222;
    transition: all 0.3s ease-in-out;
  }
  .navbar-container .nav.active {
    transition: all 0.3s ease-in-out;
    height: 100vh;
  }
  .navbar-container .nav-link {
    width: 100vw;
  }
  .navbar-container .hamburger {
    display: block;
    z-index: 100;
  }
  .motto-bg {
    width: 100%;
  }
  .welcome-container {
    justify-content: center;
  }
  .box {
    width: 100%;
  }
}
/*# sourceMappingURL=index.css.map */