.center {
  padding-left: calc(50% - 700px);
  padding-right: calc(50% - 700px);
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
}

.caveat-Bold {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.caveat-Medium {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.open-sans-Medium-italic {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
}

.open-sans-Regular-italic {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
}

.img__link {
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease-in-out;
}
.img__link:hover {
  transform: scale(1.2);
}
.img__link:active {
  transform: scale(0.9);
}

.title {
  background-color: #fafafa;
}
.title__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.title h1 {
  font-size: 68px;
}
.title h2 {
  font-size: 30px;
}
.title__text {
  text-decoration: none;
  color: black;
  font-size: 22px;
}
.title__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.title__img {
  max-width: 450px;
  border-radius: 50%;
}
.title__links {
  display: flex;
  gap: 20px;
}

.project {
  background-color: #daf1cb;
}
.project__header {
  font-size: 36px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.project__elem {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 30px;
}
.project__elem:not(:last-child) {
  border-bottom: 1px #a6bd97 solid;
}
.project__scroll {
  width: 700px;
  max-height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.project__iframe {
  width: 100%;
  height: auto;
}
.project__iframe.mob {
  width: 50%;
  margin-left: 25%;
}
.project__data {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.project__h3 {
  font-size: 28px;
}
.project__text {
  font-size: 20px;
  margin-bottom: 5px;
}
.project__ul {
  display: flex;
  gap: 20px;
}

.figma {
  border: 3px solid #000;
  box-sizing: border-box;
  border-radius: 10px;
}

.footer {
  background-color: #fad9d9;
}
.footer__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
}
.footer__ul {
  display: flex;
  gap: 15px;
}

@media (max-width: 1261px) {
  .center {
    padding-left: calc(50% - 630px);
    padding-right: calc(50% - 630px);
  }
  .title__box {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .title h1 {
    font-size: 58px;
  }
  .title h2 {
    font-size: 28px;
  }
  .title__img {
    max-width: 400px;
  }
  .project__box {
    padding-left: 10px;
    padding-right: 10px;
  }
  .project__header {
    font-size: 32px;
  }
  .project__elem {
    gap: 20px;
  }
  .project__h3 {
    font-size: 24px;
  }
  .project__text {
    font-size: 16px;
  }
}
@media (max-width: 769px) {
  .center {
    padding-left: calc(50% - 384px);
    padding-right: calc(50% - 384px);
  }
  .img__link {
    width: 40px;
    height: 40px;
  }
  .title__box {
    padding: 40px 20px;
    gap: 35px;
  }
  .title__left {
    gap: 15px;
  }
  .title h1 {
    font-size: 54px;
  }
  .title h2 {
    font-size: 26px;
  }
  .title__text {
    font-size: 18px;
  }
  .title__img {
    max-width: 350px;
  }
  .project__box {
    padding: auto 30px;
  }
  .project__header {
    font-size: 32px;
  }
  .project__elem {
    gap: 20px;
  }
  .project__scroll {
    width: 130%;
  }
  .project__h3 {
    font-size: 24px;
  }
  .project__text {
    font-size: 16px;
  }
  .footer__box {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .center {
    padding-left: calc(50% - 384px);
    padding-right: calc(50% - 384px);
  }
  .img__link {
    width: 35px;
    height: 35px;
  }
  .title__box {
    padding: 20px 10px;
    gap: 25px;
  }
  .title__left {
    gap: 10px;
  }
  .title h1 {
    font-size: 40px;
  }
  .title h2 {
    font-size: 20px;
  }
  .title__text {
    font-size: 14px;
  }
  .title__img {
    max-width: 250px;
    border-radius: 25%;
  }
  .project__box {
    padding: auto 10px;
  }
  .project__header {
    font-size: 26px;
  }
  .project__elem {
    gap: 15px;
  }
  .project__scroll {
    width: 150%;
    max-height: 300px;
  }
  .project__h3 {
    font-size: 18px;
  }
  .project__text {
    font-size: 12px;
  }
  .footer__box {
    padding: 20px;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
@media (max-width: 425px) {
  .title__box {
    flex-direction: column-reverse;
    padding: 10px;
    gap: 10px;
  }
}/*# sourceMappingURL=style.css.map */