@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap");
@font-face {
  font-family: Bold;
  src: url("./../fonts/Bold.ttf");
}
@font-face {
  font-family: Regular;
  src: url("./../fonts//Regular.ttf");
}
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  font-family: Regular;
  min-height: 100vh;
  background: oklch(97.2% 0.014 70deg);
  color: oklch(27% 0.015 55deg);
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  padding: 0 32px 40px;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 768px) {
  body {
    padding: 0 14px 40px;
  }
}

.container {
  max-width: 1024px;
  margin: auto;
}

.head {
  display: grid;
  grid-template-columns: 196px 1fr;
  gap: 44px;
  align-items: start;
  padding: 64px 0 56px;
}
@media (max-width: 660px) {
  .head {
    display: block;
  }
}
@media (max-width: 660px) {
  .head__info {
    width: 100%;
    margin-top: 30px;
  }
}
.head__info--title {
  font-weight: 400;
  font-size: 48px;
  line-height: 1.14;
  letter-spacing: -0.8px;
  color: oklch(24% 0.018 52deg);
}
.head__info--position {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: oklch(44% 0.018 58deg);
}
@media (max-width: 660px) {
  .head__info--position {
    margin: 8px 0 0;
  }
}

.profile {
  width: 196px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
}
.profile__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
@media (max-width: 660px) {
  .contact {
    margin-top: 12px;
  }
}
.contact__item {
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid oklch(87.5% 0.016 70deg);
  background: oklch(98.6% 0.008 76deg);
  list-style: none;
}
.contact__item--link {
  text-decoration: none;
  color: oklch(25% 0.018 52deg);
}

.projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 968px) {
  .projects {
    grid-template-columns: repeat(1, 1fr);
  }
}
.projects__item {
  position: relative;
  background: oklch(98.6% 0.008 76deg);
  border: 1px solid oklch(88.8% 0.014 70deg);
  border-radius: 16px;
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.projects__item:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 28px;
  width: 34px;
  height: 2px;
  background: oklch(62% 0.09 45deg);
}
.projects__item--title {
  margin: 0;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.35;
  color: oklch(25% 0.018 52deg);
}
.projects__item--desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
  color: oklch(46% 0.018 58deg);
  text-wrap: pretty;
}
.projects__item--link {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid oklch(91.2% 0.012 70deg);
  display: flex;
  align-items: center;
  gap: 28px;
}
.projects__item--link li {
  list-style: none;
}
.projects__item--link li a {
  text-decoration: none;
  font-size: 14px;
  color: oklch(50% 0.02 58deg);
}/*# sourceMappingURL=style.css.map */