/* IMAGE */
/* IMAGE MOBILE */
/* IMAGE DEKSTOP */
/* COLOR */
/* FONT */
@font-face {
  font-family: "Alata";
  src: url("../Alata/Alata-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Josefin Sans Regular";
  src: url("../Josefin_Sans/JosefinSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Josefin Sans Light";
  src: url("../Josefin_Sans/static/JosefinSans-Light.ttf");
}
/* IMAGE */
/* IMAGE MOBILE */
/* IMAGE DEKSTOP */
/* COLOR */
/* FONT */
@font-face {
  font-family: "Alata";
  src: url("../Alata/Alata-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Josefin Sans Regular";
  src: url("../Josefin_Sans/JosefinSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Josefin Sans Light";
  src: url("../Josefin_Sans/static/JosefinSans-Light.ttf");
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.attribution {
  font-size: 11px;
  text-align: center;
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 0%);
}

.attribution a {
  color: hsl(228, 45%, 44%);
}

.header {
  width: 100%;
  height: 651px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "Alata";
  margin-bottom: 30px;
}
.header__heading {
  position: absolute;
  top: 30%;
  color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 100%);
  font-size: 45px;
  padding: 5%;
  margin: 0 5%;
  font-weight: lighter;
}
.header__nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
}
.header__open-menu-button {
  all: unset;
}

.header-nav {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 0;
  overflow: hidden;
  background-color: hsl(0, 0%, 0%);
  z-index: 2;
  transition: width 1s ease;
}
.header-nav.active {
  width: 100%;
}
.header-nav__lists {
  margin-top: 3vh;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 20px;
}
.header-nav__list {
  list-style-type: none;
}
.header-nav__link {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  font-family: "Josefin Sans Light";
  font-size: 27px;
  padding-bottom: 5px;
}
.header-nav__link:hover {
  border-bottom: 1px solid hsl(0, 0%, 100%);
}
.header-nav__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 40px 20px;
}
.header-nav__close-menu-button {
  all: unset;
}

.main {
  padding: 20px 5vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main__picture {
  width: 100%;
  padding: 40px 0px;
}
.main__heading {
  font-family: "Alata";
  text-align: center;
  color: hsl(0, 0%, 0%);
  font-weight: lighter;
  font-size: 35px;
  line-height: 1;
  padding: 20px 0;
}
.main__paragraf {
  font-family: "Josefin Sans Regular";
  color: hsl(0, 0%, 55%);
  text-align: center;
  padding: 10px 9vw;
  line-height: 1.5;
  font-size: 15px;
}
.main__nav {
  width: 100%;
  margin-bottom: 8vh;
}
.main__lists {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style-type: none;
}
.main__list {
  cursor: pointer;
  width: 100%;
  height: 150px;
  position: relative;
  background-color: black;
  transition: transform 100ms linear;
}
.main__list:hover {
  transform: scale(1.01);
  box-shadow: 0 3px 5px 2px hsla(0, 0%, 0%, 0.63);
}
.main__list--Deep-earth {
  background: url("../images/mobile/image-deep-earth.jpg") no-repeat center center;
  background-size: cover;
}
.main__list--Night-arcade {
  background: url("../images/mobile/image-night-arcade.jpg") no-repeat center center;
  background-size: cover;
}
.main__list--Soccer-team-VR {
  background: url("../images/mobile/image-soccer-team.jpg") no-repeat center center;
  background-size: cover;
}
.main__list--The-grid {
  background: url("../images/mobile/image-grid.jpg") no-repeat center center;
  background-size: cover;
}
.main__list--From-up-above-VR {
  background: url("../images/mobile/image-from-above.jpg") no-repeat center center;
  background-size: cover;
}
.main__list--Pocket-borealis {
  background: url("../images/mobile/image-pocket-borealis.jpg") no-repeat center center;
  background-size: cover;
}
.main__list--The-curiosity {
  background: url("../images/mobile/image-curiosity.jpg") no-repeat center center;
  background-size: cover;
}
.main__list--Make-it-fisheye {
  background: url("../images/mobile/image-fisheye.jpg") no-repeat center center;
  background-size: cover;
}
.main__creation {
  all: unset;
  cursor: pointer;
  border: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.main__creation:hover {
  background-color: rgba(255, 255, 255, 0.555);
}
.main__creation:hover > .main__link {
  color: hsl(0, 0%, 0%);
}
.main__link {
  text-decoration: none;
  display: block;
  cursor: pointer;
  width: 55%;
  color: hsl(0, 0%, 100%);
  text-align: left;
  line-height: 1;
  font-family: "Alata";
  font-size: 30px;
  padding: 5%;
}

.see-all {
  width: 100%;
  margin: 50px 0;
  cursor: pointer;
}

.see-all__button {
  padding: 20px;
  width: 100%;
  border-radius: 0;
  border: 2px solid hsl(0, 0%, 0%);
  background-color: hsl(0, 0%, 100%);
  font-family: "Alata";
  font-size: 20px;
  letter-spacing: 5px;
  cursor: pointer;
}

.see-all__button:hover {
  background-color: hsl(0, 0%, 0%);
  color: hsl(0, 0%, 100%);
}

.footer {
  width: 100%;
  background-color: hsl(0, 0%, 0%);
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
.footer__lists {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__link {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  font-family: "Josefin Sans Regular";
  font-size: 20px;
}
.footer__social-medias {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.footer__social-media {
  width: 30px;
}
.footer__copyright {
  color: hsl(0, 0%, 55%);
  font-family: "Josefin Sans Regular";
  font-size: 18px;
}
.footer__one {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.footer__two {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

@media screen and (min-width: 365px) {
  .header {
    background-image: url("../images/mobile/image-hero.jpg");
  }
}
@media screen and (min-width: 1080px) {
  .header {
    background-image: url("../images/desktop/image-hero.jpg");
    background-size: cover;
    background-position: top;
    height: 82vh;
    padding: 5vh 8vw;
  }
  .header__nav-container {
    padding: 0;
  }
  .header__open-menu-button {
    display: none;
  }
  .header__heading {
    width: 40vh;
    letter-spacing: 4px;
    margin: 0;
    padding: 1%;
  }
  .header-nav__lists {
    flex-direction: row;
    padding: 0;
    margin: 0;
  }
  .main__additional-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 30px 0;
  }
  .main__additional-div__heading--second {
    padding: 0;
  }
  .main__head {
    position: relative;
    width: 100%;
    aspect-ratio: 1/0.4;
  }
  .main__paragraf {
    padding: 0;
    text-align: left;
  }
  .main__heading--first {
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
  }
  .main__picture {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 70%;
    aspect-ratio: 3/4;
    padding: 0;
    z-index: 0;
  }
  .main__div {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: hsl(0, 0%, 100%);
    z-index: 1;
    width: 40%;
    height: 65%;
    padding-top: 15%;
    padding-left: 10%;
    text-align: left;
  }
  .main__nav {
    width: 100%;
  }
  .main__link {
    width: 60%;
  }
  .main__lists {
    display: grid;
    height: 100%;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 2fr);
    gap: 45px;
  }
  .main__list {
    height: 100%;
    aspect-ratio: 1/2;
  }
  .main__list--Deep-earth {
    background: url("../images/desktop/image-deep-earth.jpg") no-repeat center center;
    background-size: cover;
  }
  .main__list--Night-arcade {
    background: url("../images/desktop/image-night-arcade.jpg") no-repeat center center;
    background-size: cover;
  }
  .main__list--Soccer-team-VR {
    background: url("../images/desktop/image-soccer-team.jpg") no-repeat center center;
    background-size: cover;
  }
  .main__list--The-grid {
    background: url("../images/desktop/image-grid.jpg") no-repeat center center;
    background-size: cover;
  }
  .main__list--From-up-above-VR {
    background: url("../images/desktop/image-from-above.jpg") no-repeat center center;
    background-size: cover;
  }
  .main__list--Pocket-borealis {
    background: url("../images/desktop/image-pocket-borealis.jpg") no-repeat center center;
    background-size: cover;
  }
  .main__list--The-curiosity {
    background: url("../images/desktop/image-curiosity.jpg") no-repeat center center;
    background-size: cover;
  }
  .main__list--Make-it-fisheye {
    background: url("../images/desktop/image-fisheye.jpg") no-repeat center center;
    background-size: cover;
  }
  .main__creation {
    width: 100%;
  }
  .see-all {
    width: 200px;
    padding: 0;
    margin: 0;
  }
  .see-all__button {
    padding: 5px 10px;
  }
  .footer {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__one {
    align-items: flex-start;
  }
  .footer__two {
    align-items: flex-end;
  }
  .footer__lists {
    flex-direction: row;
  }
}/*# sourceMappingURL=new.css.map */