* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  color: #656d78;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
}

h1,
h2,
h3 {
  color: #47535e;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
}

h1 {
  font-size: 4.8rem;
  line-height: 4.8rem;
  letter-spacing: 2.4px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
    line-height: 3.6rem;
    letter-spacing: 1.5px;
  }
}

h2 {
  font-size: 3.6rem;
  line-height: 4rem;
  letter-spacing: 1.8px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.4rem;
    line-height: 3.2rem;
    letter-spacing: 1.2px;
  }
}

h3 {
  font-size: 3rem;
  line-height: 3.6rem;
  letter-spacing: 1.5px;
}
@media (max-width: 768px) {
  h3 {
    font-size: 2rem;
    line-height: 2.8rem;
    letter-spacing: 1px;
  }
}

a {
  text-decoration: none;
}

.wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.wrapper--menu, .wrapper--navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.wrapper--footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 180px;
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47535e;
  opacity: 0;
  transition: top 0.3s ease-in-out;
  z-index: 2;
}
.menu--opened {
  top: 0;
  opacity: 1;
}
.menu__logo {
  color: #ffffff;
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  line-height: 2.8rem;
  letter-spacing: 1px;
  font-weight: 400;
}
.menu__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  margin-top: 30px;
  list-style: none;
}
.menu__link {
  display: block;
  margin-bottom: 32px;
  color: #a0a0a2;
  border-bottom: 1px solid transparent;
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  line-height: 3.6rem;
  letter-spacing: 1.5px;
  font-weight: 400;
}
.menu__link:hover {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  transition: all 0.3s ease-in-out;
}

.close {
  cursor: pointer;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1;
}
.navbar--border {
  border-bottom: 1px solid rgb(210, 212, 219);
}
.navbar__logo {
  color: #47535e;
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  line-height: 2.8rem;
  letter-spacing: 1px;
  font-weight: 400;
}

.hamburger {
  cursor: pointer;
}

.header {
  margin: 210px 0 130px;
}
@media (max-width: 768px) {
  .header {
    margin-top: 150px;
  }
}
.header__desc {
  margin: 32px 0;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
@media (max-width: 768px) {
  .header__desc {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
.header__link {
  display: flex;
  align-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
  padding-bottom: 10px;
  color: #656d78;
  border-bottom: 1px solid rgb(210, 212, 219);
  font-size: 1.8rem;
  line-height: 2.8rem;
  transition: border-bottom 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .header__link {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
.header__link:hover {
  border-bottom-color: #656d78;
}
.header__link:hover .header__arrow {
  transform: translateX(4px);
}
.header__arrow {
  margin-left: 4px;
  transition: transform 0.3s ease-in-out;
}

#projects {
  scroll-margin-top: 110px;
}

.projects__title {
  margin-bottom: 32px;
}

.project {
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 48px;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out;
}
.project--green {
  background-color: #b9f1be;
}
.project--violet {
  background-color: #ddd8fa;
}
.project--blue {
  background-color: #bbd3f0;
}
.project--yellow {
  background-color: #f0de95;
}
.project:hover {
  transform: scale(1.03);
}
.project__img {
  width: 100%;
  margin-top: 24px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .project__img {
    display: none;
  }
}
.project__container {
  max-width: 50%;
  align-self: center;
  padding: 64px;
}
@media (max-width: 1024px) {
  .project__container {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .project__container {
    max-width: 100%;
  }
}
.project__desc {
  margin-top: 16px;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.project__stack {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
  list-style: none;
}
.project__stack li {
  margin: 8px 16px 0 0;
  font-size: 1.4rem;
  line-height: 2rem;
}
.project__links {
  display: flex;
}
@media (max-width: 320px) {
  .project__links {
    flex-direction: column;
    text-decoration: underline;
  }
}
.project__links a {
  display: flex;
  align-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 24px 16px 0 0;
  padding-bottom: 3px;
  color: #656d78;
  border-bottom: 1px solid #656d78;
  font-size: 1.4rem;
  line-height: 2rem;
}
@media (max-width: 320px) {
  .project__links a {
    margin: 16px 0 0;
    border-bottom: none;
  }
}
.project__links a:hover {
  color: #47535e;
  border-bottom-color: #47535e;
}
.project__links a:hover .project__arrow {
  transform: translateX(3px);
}
.project__arrow {
  margin-left: 3px;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 320px) {
  .project__arrow {
    display: none;
  }
}

.footer {
  margin-top: 160px;
  background-color: #f3f4f6;
}
.footer__social {
  margin-bottom: 16px;
  color: #656d78;
}
.footer__social:hover {
  color: #47535e;
}/*# sourceMappingURL=style.css.map */