@import url("https://fonts.googleapis.com/css2?family=Alata&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Alata", sans-serif;
  font-size: 16px;
  color: hsl(0, 0%, 0%);
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  max-width: 370px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
main header {
  position: relative;
}
main header .hero {
  position: relative;
  z-index: 0;
  height: 30rem;
}
main header .hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
main header .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  padding: 1rem;
}
main header .content nav {
  color: hsl(0, 0%, 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
}
main header .content nav img:first-of-type {
  margin-right: auto;
}
main header .content nav img:last-of-type {
  margin-left: 7.8rem;
}
main header .content nav img:last-of-type:hover {
  cursor: pointer;
}
main header .content h1 {
  color: hsl(0, 0%, 100%);
  border: 2px solid hsl(0, 0%, 100%);
  text-transform: uppercase;
  padding: 1rem;
  margin: auto;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  word-spacing: 10rem;
}
main header ul {
  position: absolute;
  background-color: hsl(0, 0%, 0%);
  top: 0;
  width: 100%;
  height: 100vh;
  padding: 2rem;
  line-height: 300%;
  display: none;
}
main header ul li {
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  font-size: 200%;
}
main header ul .head-icon {
  display: flex;
  flex-direction: row;
  height: 2rem;
  justify-content: space-between;
  background-color: black;
  margin-bottom: 7rem;
}
main header ul #exit-icon {
  margin-left: 0.8rem;
  height: 1.8rem;
  width: 1.8rem;
  align-self: center;
}
main header ul #exit-icon:hover {
  cursor: pointer;
}
main header ul a:hover {
  text-decoration: underline;
}
main article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
main article picture {
  width: 100%;
}
main article picture img {
  width: 100%;
  display: block;
  object-fit: cover;
}
main article .article-content {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  text-align: center;
  gap: 0.5rem;
}
main article .article-content h1 {
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}
main article .article-content p {
  font-family: "Alata", sans-serif;
  font-weight: 300;
  color: hsl(0, 0%, 85%);
}
main a {
  text-decoration: none;
  color: hsl(0, 0%, 85%);
}
main .gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}
main .gallery .gallery-content {
  display: grid;
  gap: 0.8rem;
}
main .gallery .desktop-button {
  display: none;
}
main .gallery button {
  align-self: center;
  border: 0.15rem solid hsl(0, 0%, 0%);
  width: 10rem;
  height: 3rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  background-color: hsl(0, 0%, 100%);
}
main .gallery button:hover {
  cursor: pointer;
  background-color: hsl(0, 0%, 0%);
  color: hsl(0, 0%, 100%);
}
main .gallery .gallery-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
main .gallery .gallery-item picture {
  width: 100%;
}
main .gallery .gallery-item picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
main .gallery .gallery-item picture img:hover {
  cursor: pointer;
  opacity: 0.2;
}
main .gallery .gallery-item p {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  color: hsl(0, 0%, 100%);
  font-family: "Josefin Sans", sans-serif;
  opacity: 0.9;
  font-weight: 300;
  font-size: 200%;
  line-height: 100px;
}
main .gallery p {
  margin-top: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  color: hsl(0, 0%, 0%);
}

ul {
  list-style: none;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: hsl(0, 0%, 0%);
  color: hsl(0, 0%, 85%);
  gap: 0.8rem;
  padding: 0.5rem;
  color: hsl(0, 0%, 100%);
}
footer .left-side ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .left-side ul li:hover {
  border-bottom: 1px solid hsl(0, 0%, 85%);
}
footer .right-side ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
footer p {
  color: hsl(0, 0%, 85%);
}

@media screen and (min-width: 768px) {
  main {
    max-width: 1440px;
    width: 100%;
  }
  main header .content {
    padding: 6rem;
  }
  main header .content nav #menu-icon, main header .content nav #exit-icon, main header .content nav #logo1 {
    display: none;
  }
  main header .content nav .menu {
    display: flex !important;
    background-color: transparent;
    gap: 1rem;
    margin-left: 25rem;
  }
  main header .content nav .menu li {
    font-size: 100%;
    margin-top: -2rem;
  }
  main header .content nav .menu .head-icon {
    display: none;
  }
  main header h1 {
    padding: 1rem;
    margin: auto;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 300;
    width: 40%;
  }
  main article {
    position: relative;
    padding: 0;
    height: 100%;
  }
  main article picture {
    height: 80%;
    width: 60%;
  }
  main article picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  main article .article-content {
    position: absolute;
    background-color: hsl(0, 0%, 100%);
    height: 60%;
    width: 53%;
    bottom: 0;
    right: 0;
    z-index: 1;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 0 4rem;
  }
  main article .article-content h1 {
    font-weight: 300;
    font-size: 200%;
    text-align: left;
  }
  main article .article-content p {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    text-align: left;
    font-size: 80%;
    opacity: 0.5;
    color: hsl(0, 0%, 0%);
  }
  main .section-content {
    padding: 8rem;
  }
  main .gallery {
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 100%);
    padding: 0;
    margin: 0;
  }
  main .gallery .heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin: 2rem;
  }
  main .gallery .heading h1 {
    text-transform: uppercase;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 300;
    color: hsl(0, 0%, 0%);
  }
  main .gallery .heading .desktop-button {
    display: flex !important;
    justify-content: center;
    align-items: center;
    border: 0.1rem solid hsl(0, 0%, 0%);
    height: 2rem;
    width: 8rem;
    padding: 0;
    color: hsl(0, 0%, 0%);
    font-family: "Josefin Sans", sans-serif;
    font-size: 100%;
  }
  main .gallery .mobile {
    display: none;
  }
  main .gallery-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
  }
  main .gallery-content .gallery-item p {
    text-align: left;
    line-height: 2rem;
    margin: 16rem 1rem 0 0.5rem;
  }
  main footer {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    padding: 2rem 5rem;
  }
  main footer .left-side ul {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  main footer .left-side img {
    height: 2rem;
    width: 10rem;
  }
  main footer .left-side, main footer .right-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  main footer .right-side ul {
    justify-content: end;
  }
  main footer .right-side p {
    color: hsl(0, 0%, 85%);
    opacity: 0.4;
  }
}

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