/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto&display=swap");
/* Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

.animated-icons > div {
  transition: transform 0.5s;
  will-change: transform;
}
.animated-icons > div a {
  color: black;
}
.animated-icons > div:hover {
  transform: rotate(360deg);
}

body {
  font-family: "Roboto", sans-serif;
}
body header .header-background-design {
  background-color: #0891b2;
  transform: skewY(-15deg) translateY(-50%);
}
body header .hero-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
}
body header .hero-container .hero-name {
  position: absolute;
  bottom: 0;
  left: 2.5%;
  text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.5);
}
body header .hero-container .animated-icons {
  justify-content: center;
}
body main .my-work {
  text-align: center;
}
body main .projects > div {
  transition: transform 0.3s;
  will-change: transform;
}
body main .projects > div:hover {
  transform: translateY(-4px);
}
body footer {
  background-color: #0891b2;
}

@media (max-width: 320px) {
  .drop-shadow-container {
    margin-bottom: 12%;
  }
}
@media (min-width: 321px) and (max-width: 375px) {
  .drop-shadow-container {
    margin-bottom: 22%;
  }
}
@media (min-width: 376px) and (max-width: 425px) {
  .drop-shadow-container {
    margin-bottom: 32%;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  header .hero-container {
    display: block !important;
    max-width: 96%;
    margin: 1rem auto;
  }
  header .hero-container .image-and-name .hero-image {
    max-width: 360px;
    height: auto;
    float: left;
    margin-right: 0.75rem;
  }
  header .hero-container .image-and-name .hero-name {
    font-size: calc(1rem + 4.5vw);
    bottom: unset;
    left: 48%;
  }
  header .hero-container .about-me {
    background-color: white;
    padding: 1rem;
    padding-top: 3rem;
    margin-top: 7.5rem;
    margin-left: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  header .hero-container .about-me p {
    margin: 0.5rem;
  }
  header .hero-container .about-me .animated-icons {
    justify-content: flex-end;
  }
}
@media (min-width: 426px) {
  header .hero-container {
    max-width: 96%;
    margin: 1rem auto;
  }
  header .hero-container .about-me {
    padding: 1rem;
    background-color: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  header .hero-container .about-me .animated-icons {
    justify-content: flex-end;
  }
  main .my-work {
    text-align: left !important;
    margin-bottom: 0;
  }
  footer {
    position: relative;
    padding: 3rem 1.5rem;
  }
  footer .contact-info {
    padding-left: 0 !important;
    max-width: 50%;
  }
  footer .contact-info .animated-icons {
    justify-content: start !important;
  }
  footer .footer-image {
    max-width: 50%;
    right: 2.5%;
    top: 15%;
    max-height: 90%;
    position: absolute;
  }
}
@media (min-width: 769px) {
  header .header-background-design {
    transform: skewY(-15deg) translateY(-60%) !important;
  }
  header .hero-container {
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 0 !important;
  }
  header .hero-container .image-and-name h1 {
    font-size: 3rem;
  }
  header .hero-container .about-me {
    max-width: 60%;
  }
  footer {
    padding: 5rem 2.5rem;
  }
  footer .footer-image {
    top: 10%;
  }
}
@media (min-width: 1025px) {
  header .header-background-design {
    transform: skewY(-15deg) translateY(-70%) !important;
  }
  header .about-me {
    max-width: unset !important;
  }
  footer .footer-image {
    top: 5%;
    width: 60%;
    height: auto;
  }
}

/*# sourceMappingURL=index.css.map */
