@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  box-sizing: border-box;
}

.container {
  max-width: 970px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 50px;
}
.heading h2 {
  color: #070707;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.heading p {
  color: #070707;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid black;
  height: 80px;
}
header nav ul {
  display: flex;
  gap: 40px;
}
header nav ul li a {
  color: #828282;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
  text-decoration: unset;
}
header nav ul li a:hover {
  color: #070707;
}
header .burger-menu {
  display: none;
  width: 35px;
  height: 25px;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
header .burger-menu span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: grey;
}

main .first-screen {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}
main .first-screen h2 {
  color: #070707;
  font-family: "Open Sans", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 50px;
}
main .first-screen img {
  max-width: 970px;
  width: 100%;
  height: auto;
}
main .about-me {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F6F6F6;
}
main .about-me h2 {
  color: #070707;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 100px 0 50px 0;
}
main .about-me .about-me__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}
main .about-me .about-me__info p {
  color: #070707;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
main .about-me .about-me__info .first-paragraph {
  width: 100%;
  max-width: 646px;
}
main .about-me .about-me__info .second-paragraph {
  width: 100%;
  max-width: 552px;
  margin: 30px 0;
}
main .about-me .about-me__info .third-paragraph {
  width: 100%;
  max-width: 450px;
}
main .skills {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .skills .items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
  max-width: 970px;
  width: 100%;
}
main .portfolio {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F6F6F6;
  padding: 100px 0 30px 0;
}
main .portfolio h2 {
  color: #070707;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 50px;
}
main .portfolio .portfolio-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}
main .portfolio .portfolio-items img {
  max-width: 970px;
  width: 100%;
  height: auto;
}
main .portfolio .portfolio-items .paragraph-one {
  max-width: 200px;
  width: 100%;
  text-align: center;
}
main .portfolio .portfolio-items p {
  margin-top: 40px;
}
main .portfolio .portfolio-items p a {
  color: #070707;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px;
}
footer .paragraph-two {
  max-width: 280px;
  width: 100%;
}
footer .socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 310px;
  width: 100%;
  margin: 10px 0 60px 0;
}
footer .socials button {
  display: flex;
  width: 180px;
  height: 44px;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  border: unset;
  border-radius: 22px;
  background: #070707;
  color: #FFF;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.8px;
  margin-bottom: 30px;
}
footer .socials nav {
  max-width: 310px;
  width: 100%;
}
footer .socials nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer p {
  color: #828282;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 200px;
  width: 100%;
}

@media (max-width: 768px) {
  header {
    height: auto;
  }
  header nav ul {
    flex-direction: column;
  }
  main .skills .items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 645px) {
  header {
    height: 80px;
    justify-content: flex-end;
  }
  header.active {
    height: auto;
    align-items: flex-end;
    flex-direction: column-reverse;
  }
  header nav {
    display: none;
  }
  header nav.active {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  header nav ul {
    flex-direction: column;
  }
  header .burger-menu {
    display: flex;
  }
  header .burger-menu.active {
    margin-top: 27px;
  }
}

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