body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  background: linear-gradient(-45deg, #181818, #080808, #3a3a3a, #111111);
  background-size: 400% 400%;
  animation: gradient 12s ease infinite;
  color: #fff;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
a {
  text-decoration: none;
  color: #fff;
}

.specialButton {
  width: 170px;
  height: 45px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.7254901961);
  font-weight: 700;
  font-size: 0.85rem;
}

.specialButton:hover {
  box-shadow: 1px 1px 80px rgb(129, 208, 245);
  transition: all 250ms;
}

.specialButton:not(:hover) {
  transition: all 250ms;
}

main nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2941176471);
  border-radius: 50px;
  margin: 0.5rem;
}
main nav .navLogo {
  max-width: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main nav .navLogo h1 {
  font-family: "Qwitcher Grypen", cursive;
  font-size: 2rem;
  margin: 0;
}
main nav .navLinks a {
  margin: 1rem;
}
main nav .navLinks a:hover {
  color: rgb(129, 208, 245);
  transition: all 250ms;
}
main nav .navLinks a:not(:hover) {
  transition: all 250ms;
}
main header {
  max-width: 1200px;
  margin: auto;
  margin-top: 10rem;
  text-align: center;
}
main header h1 {
  font-size: 3.5rem;
  margin: 0;
}
main header h4 {
  font-weight: 400;
}
main .aboutMe {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15rem;
}
main .aboutMe .aboutMeTitle {
  width: 600px;
}
main .aboutMe .aboutMeTitle img {
  margin-bottom: 0.5rem;
}
main .aboutMe .aboutMeTitle h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  margin: 0;
}
main .aboutMe .aboutMeTitle h3 {
  font-weight: 400;
}
main .aboutMe .aboutMeInfo {
  width: 600px;
  line-height: 30px;
}
main .services {
  max-width: 1200px;
  margin: auto;
  margin-top: 15rem;
  text-align: center;
}
main .services h1 {
  font-size: 2.5rem;
  margin: 0;
}
main .services .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  gap: 5rem;
  justify-content: space-around;
  margin: 2rem;
}
main .services .cards .card {
  width: 300px;
}
main .services .servicesTypes {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
main .services .specialButton {
  width: 300px;
}
main .jobsCompleted {
  max-width: 1800px;
  margin: auto;
  margin-top: 15rem;
  text-align: center;
}
main .jobsCompleted h1 {
  font-size: 2.5rem;
  margin: 0;
}
main .jobsCompleted .jobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(390px, auto));
  gap: 2rem;
  justify-content: center;
  margin: 2rem;
}
main .jobsCompleted .jobs .job {
  width: 400px;
  height: 370px;
  background-color: rgba(255, 255, 255, 0.1019607843);
  border-radius: 20px;
  box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.7254901961);
  margin-bottom: 2rem;
  cursor: pointer;
}
main .jobsCompleted .jobs .job .jobImage img {
  border-radius: 20px;
}
main .jobsCompleted .jobs .job .jobInfo {
  display: flex;
  justify-content: space-evenly;
}
main .jobsCompleted .jobs .job .jobButton {
  position: absolute;
  margin-top: -60px;
  margin-left: 10px;
}
main .jobsCompleted .jobs .job .jobButton .specialButton {
  width: 200px;
}
main .jobsCompleted .jobs .job:hover {
  box-shadow: 1px 1px 30px rgb(129, 208, 245);
  transition: all 250ms;
}
main .jobsCompleted .jobs .job:not(:hover) {
  transition: all 250ms;
}
main .contact {
  max-width: 1800px;
  margin: auto;
  margin-top: 15rem;
  text-align: center;
}
main .contact .contactInfo {
  max-width: 500px;
  margin: auto;
}
main .contact .contactItems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, auto));
  gap: 2rem;
  justify-content: center;
  margin: 2rem;
}
main .contact .contactItems .item {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  border-radius: 10px;
  width: 370px;
  height: 80px;
  cursor: pointer;
}
main .contact .contactItems .item .itemIcon {
  margin: 0.5rem;
}
main .contact .contactItems .item:hover {
  box-shadow: 1px 1px 30px rgb(129, 208, 245);
  transition: all 250ms;
}
main .contact .contactItems .item:not(:hover) {
  transition: all 250ms;
}
main footer {
  text-align: center;
  margin: 2rem;
  margin-top: 15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
}
main footer .footerInfo {
  margin-top: 2rem;
}
main footer .footerInfo p {
  font-size: 0.75rem;
}

@media (max-width: 860px) {
  main nav .navLogo h1 {
    font-size: 1.5rem;
  }
  main nav .navLinks a {
    margin: 0.5rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  main nav {
    padding: 1rem;
  }
  main nav .navLinks a {
    margin: 0.5rem;
    display: none;
  }
  main nav .navLinks a button {
    display: block;
  }
  main header {
    margin-top: 11rem;
  }
  main header h1 {
    font-size: 2.5rem;
  }
  main .aboutMe {
    flex-direction: column;
    text-align: center;
  }
  main .aboutMe .aboutMeTitle, main .aboutMe .aboutMeInfo {
    width: 90%;
  }
  main .services .cards {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  main .services .specialButton {
    width: 90%;
  }
  main .jobsCompleted .jobs {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  main .jobsCompleted .jobs .job {
    margin-bottom: 3rem;
  }
  main .contact .contactItems {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
@media (max-width: 500px) {
  main .jobsCompleted .jobs .job {
    width: 370px;
  }
  main .jobsCompleted .jobs .job .jobImage img {
    width: 370px;
  }
}/*# sourceMappingURL=style.css.map */