/* inicio da root*/
.button {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.2s;
}

.button-primary {
  color: #6608c5;
  border: 2px solid #6608c5;
}
.button-primary:hover {
  color: #fff;
  background-color: #6608c5;
}

.button-secondary {
  color: #fff;
  border: 2px solid #fff;
}
.button-secondary:hover {
  color: #6608c5;
  background-color: #fff;
}

.button-tertiary {
  background: #6608c5;
  color: #fff;
  border: 2px solid #6608c5;
}
.button-tertiary:hover {
  color: #6608c5;
  background-color: #fff;
}

.button-medium {
  padding: 15px 20px;
  margin-left: 40%;
}

/*styles reset*/
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0%;
}

ul {
  padding: 0%;
  margin: 0%;
  list-style-type: none;
}

h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}

/*end of styles reset*/
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.header-content {
  text-align: center;
  /* max-width: 856px; */
}

.header-title span {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.4;
  color: #6608c5;
}

.about {
  background-color: #6608c5;
  color: #fff;
  padding: 0.6rem 1.5rem 3.1rem;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  height: 100%;
}

.about-title {
  margin: 2.5rem 0;
}

@media (min-width: 992px) {
  .about-content {
    display: flex;
    max-width: 1220px;
    margin: 0 auto;
  }
}

.about-img {
  width: 100%;
  max-width: 215px;
  border-radius: 50%;
}

.about-description {
  padding-right: 3rem;
  padding: 20px;
}

.about-quote {
  text-align: center;
  margin: 2rem 0 3rem;
}

.projects {
  box-sizing: border-box;
  padding: 0.6rem 0.3rem 3.1rem;
  scroll-behavior: smooth;
}
.projects .button-primary {
  margin-right: 15px;
}
@media (min-width: 992px) {
  .projects {
    max-width: 960px;
    margin: 0 auto;
  }
}
.projects .project-title {
  padding: 1.2rem 0;
}
.projects .project-article {
  display: flex;
  justify-content: space-around;
  max-width: 1220px;
  margin: 3rem auto;
}
.projects .project-link {
  margin-top: 1.5rem;
}
.projects .project-img {
  min-width: 300px;
}

h3 {
  font-size: 24px;
  text-align: left;
  font-weight: 500;
  line-height: 28px;
  padding: 10px;
}
@media (min-width: 992px) {
  h3 {
    display: flex;
    max-width: 960px;
    margin: 0 auto;
  }
}

.contact {
  background-color: #6608c5;
  color: #fff;
  padding: 10px 25px 50px;
  clip-path: polygon(0 40%, 100% 0, 100% 101%, 0 101%);
  height: 100%;
}
.contact .contacts-container {
  margin: 8rem auto 0;
  max-width: 1220px;
}
.contact .contacts-title {
  margin-bottom: 2.5rem;
  text-align: center;
}
.contact .contacts-link {
  margin-top: 2.5rem;
  text-align: center;
}

.footer {
  background-color: #002324;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 12rem;
}
.footer .footer-wrapper {
  text-align: center;
  color: #fff;
  margin-top: 1rem;
}

.social-item {
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  padding: 5px;
}
.social-item .social-link {
  display: block;
  width: 30px;
  height: 30px;
  background-size: 30px;
  background-repeat: no-repeat;
}

.github {
  background-image: url(../../assets/icons/icon-github.png);
}

.linkedln {
  background-image: url(../../assets/icons/icon-linkedin.png);
}

.twitter {
  background-image: url(../../assets/icons/icon-twitter.png);
}

.youtube {
  background-image: url(../../assets/icons/icon-youtube.png);
}

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