body {
  font-family: "Alata", sans-serif;
  margin: 0px;
  font-size: 15px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: start;
  background-image: url("../images/desktop/image-hero.jpg");
  padding: 5rem 10rem;
  height: 60vh;
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.header__link {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.header__link:hover {
  text-decoration: underline;
}
.header__menu-btn, .header__menu-close {
  display: none;
}
.header__hero {
  border: 2px solid hsl(0, 0%, 100%);
  width: 54%;
}
.header__title {
  color: hsl(0, 0%, 100%);
  font-size: 4rem;
  font-weight: 300;
  margin: 2.5rem;
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
}
@media (max-width: 768px) {
  .header {
    padding: 2rem;
    background-image: url("../images/mobile/image-hero.jpg");
  }
  .header__logo--active {
    z-index: 3;
  }
  .header__menu {
    display: none;
  }
  .header__menu--active {
    display: flex;
    flex-flow: column nowrap;
    position: absolute;
    top: 0;
    left: 0;
    width: 83%;
    height: 100%;
    background-color: hsl(0, 0%, 0%);
    padding: 2rem;
    gap: 1rem;
    z-index: 1;
    justify-content: center;
  }
  .header__menu--active .header__link {
    color: hsl(0, 0%, 100%);
    font-family: "Josefin Sans", sans-serif;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.5;
  }
  .header__menu--active .header__link:hover {
    text-decoration: none;
  }
  .header__menu-btn {
    display: block;
    cursor: pointer;
    background-color: transparent;
    border: none;
  }
  .header__menu-close--active {
    display: block;
    cursor: pointer;
    background-color: transparent;
    border: none;
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
  }
  .header__hero {
    width: 100%;
  }
  .header__title {
    font-size: 2.5rem;
    margin: 1.5rem;
  }
}

.about {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: start;
  padding: 5rem 10rem;
  height: 60vh;
  background-color: hsl(0, 0%, 100%);
}
.about__image {
  width: 60%;
  position: relative;
}
.about__content {
  background-color: hsl(0, 0%, 100%);
  padding: 5rem 0 2rem 5rem;
  width: 50%;
  z-index: 2;
  position: relative;
  top: -70%;
  left: 50%;
}
.about__title {
  font-size: 3rem;
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 0px;
}
.about__text {
  color: hsl(0, 0%, 55%);
  line-height: 1.5rem;
}
@media (max-width: 768px) {
  .about {
    padding: 2rem;
    height: auto;
    text-align: center;
  }
  .about__image {
    width: 100%;
  }
  .about__content {
    position: static;
    width: 100%;
    padding: 2rem 0;
    text-align: center;
  }
  .about__title {
    font-size: 2.5rem;
  }
}

.creations {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 5rem 10rem;
  background-color: hsl(0, 0%, 100%);
  gap: 5rem;
}
.creations__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.creations__title {
  font-size: 3rem;
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
  margin: 0px;
  font-weight: 300;
}
.creations__cta {
  text-decoration: none;
  color: hsl(0, 0%, 0%);
  text-transform: uppercase;
  border: 1px solid hsl(0, 0%, 0%);
  padding: 0.5rem 1rem;
  letter-spacing: 5px;
  transition: all 0.3s ease;
}
.creations__cta:hover {
  background-color: hsl(0, 0%, 0%);
  color: hsl(0, 0%, 100%);
}
.creations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.creations__item {
  position: relative;
  height: 450px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.creations__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.creations__item:hover {
  opacity: 0.7;
}
.creations__item-title {
  position: absolute;
  z-index: 1;
  margin: 0;
  font-weight: 300;
  color: hsl(0, 0%, 100%);
  width: 80%;
  font-size: 2rem;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  bottom: 1rem;
  left: 1rem;
}
.creations__link {
  text-decoration: none;
}
.creations__item--deep-earth {
  background-image: url("../images/desktop/image-deep-earth.jpg");
}
.creations__item--night-arcade {
  background-image: url("../images/desktop/image-night-arcade.jpg");
}
.creations__item--soccer-team {
  background-image: url("../images/desktop/image-soccer-team.jpg");
}
.creations__item--grid {
  background-image: url("../images/desktop/image-grid.jpg");
}
.creations__item--from-above {
  background-image: url("../images/desktop/image-from-above.jpg");
}
.creations__item--pocket-borealis {
  background-image: url("../images/desktop/image-pocket-borealis.jpg");
}
.creations__item--curiosity {
  background-image: url("../images/desktop/image-curiosity.jpg");
}
.creations__item--fisheye {
  background-image: url("../images/desktop/image-fisheye.jpg");
}
@media (max-width: 768px) {
  .creations {
    padding: 2rem;
    gap: 3rem;
  }
  .creations__header {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .creations__title {
    font-size: 2rem;
  }
  .creations__cta {
    order: 1;
  }
  .creations__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 1fr);
  }
  .creations__item {
    height: 120px;
    background-size: cover;
    background-position: center;
  }
  .creations__item-title {
    font-size: 1.5rem;
    bottom: 1rem;
    left: 1rem;
  }
  .creations__item--deep-earth {
    background-image: url("../images/mobile/image-deep-earth.jpg");
  }
  .creations__item--night-arcade {
    background-image: url("../images/mobile/image-night-arcade.jpg");
  }
  .creations__item--soccer-team {
    background-image: url("../images/mobile/image-soccer-team.jpg");
  }
  .creations__item--grid {
    background-image: url("../images/mobile/image-grid.jpg");
  }
  .creations__item--from-above {
    background-image: url("../images/mobile/image-from-above.jpg");
  }
  .creations__item--pocket-borealis {
    background-image: url("../images/mobile/image-pocket-borealis.jpg");
  }
  .creations__item--curiosity {
    background-image: url("../images/mobile/image-curiosity.jpg");
  }
  .creations__item--fisheye {
    background-image: url("../images/mobile/image-fisheye.jpg");
  }
}

.footer {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: stretch;
  padding: 3rem 10rem;
  background-color: hsl(0, 0%, 0%);
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__nav, .footer__right {
  display: flex;
  flex-flow: column nowrap;
  gap: 1.5rem;
}
.footer__logo {
  width: 150px;
  padding-bottom: 0.5rem;
}
.footer__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.footer__link {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  font-size: 1rem;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: end;
}
.footer__social-link {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.5rem;
}
.footer__social-link:hover {
  border-bottom: 2px solid hsl(0, 0%, 100%);
  padding-bottom: 0.5rem;
}
.footer__copyright {
  color: hsl(0, 0%, 55%);
  margin: 0;
}
.footer__attribution {
  text-align: center;
  padding: 1rem 0;
  color: hsl(0, 0%, 55%);
  font-size: 0.875rem;
}
.footer__attribution__link {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__attribution__link:hover {
  color: hsl(0, 0%, 41%);
}
@media (max-width: 768px) {
  .footer {
    padding: 3rem 2rem;
  }
  .footer__content {
    flex-direction: column;
    gap: 2rem;
  }
  .footer__nav {
    align-items: center;
  }
  .footer__menu {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .footer__right {
    align-items: center;
    margin-top: 1rem;
  }
  .footer__social {
    justify-content: center;
    margin-bottom: 1rem;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__attribution {
    margin-top: 2rem;
    border-top: 1px solid hsl(0, 0%, 55%);
    padding-top: 2rem;
  }
}

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