@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&family=Oswald:wght@300&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  color: #fff;
  font-family: 'EB Garamond', serif;
}

a {
  color: #fff;
  text-decoration: none;
}

header {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 0 20px;
  width: 100%;
  max-width: 1322px;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

header nav .logo {
  width: 165px;
}

header .links {
  display: flex;
  align-items: center;
  font-size: 28px;
}

header .links .roadmaplink {
  margin-right: 64px;
}

header .links .open-sea {
  margin-left: 50px;
}

header .links .open-sea a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 264px;
  height: 80px;
  background-color: #000;
}

.firstview {
  background-color: #847CE3;
  padding: 143px 0 186px;
}

.firstview > .title {
  width: 55%;
  margin-left: 2vw;
}

.firstview > p {
  max-width: 804px;
  font-size: 32px;
  margin-top: 40px;
  margin-left: 16.66%;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1800px) {
  .firstview > p {
    width: 40%;
  }
}

@media screen and (min-width: 440px) {
  .firstview > p {
    margin-top: 60px;
  }
}

.firstview .charactor {
  width: 42%;
  position: absolute;
  top: 232px;
  right: 2.2%;
}

.firstview .swiper {
  margin-top: 8vw;
}

.firstview .swiper img {
  width: 100%;
  height: 24.37vw;
  object-fit: cover;
}

.firstview .swiper p {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  text-align: center;
  padding-bottom: .2em;
  margin-top: 20px;
}

.roadmap {
  background-color: #e37c9c;
  padding: 120px 0 230px;
  position: relative;
}

.roadmap::before {
  content: '';
  position: absolute;
  left: 16.66%;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #fff;
}

.roadmap .inner {
  max-width: 1600px;
  padding: 0 20px;
  margin: 0 auto;
}

.roadmap .inner h2 {
  font-size: 96px;
  margin-bottom: 29px;
  text-align: center;
}

.roadmap .inner > p {
  font-size: 40px;
  text-align: center;
  line-height: 54px;
}

@media screen and (max-width: 1800px) {
  .roadmap .inner > p {
    margin: 0 auto;
    width: 60%;
  }
}

.roadmapContents {
  counter-reset: roadmapContents;
  margin-top: 220px;
}

.roadmapContents li {
  position: relative;
  padding-left: calc((100vw * 0.1666) - ((100vw - 1600px) / 2));
  color: #ecff84;
}

.roadmapContents li:not(:first-of-type) {
  margin-top: 110px;
}

@media screen and (max-width: 1600px) {
  .roadmapContents li {
    padding-left: 16.66%;
  }
}

.roadmapContents li::before {
  position: absolute;
  top: 5px;
  left: calc((100vw * 0.1666) - ((100vw - 1600px) / 2));
  transform: translateX(-80px);
  color: #fff;
  font-size: 32px;
  counter-increment: roadmapContents;
  content: "#0" counter(roadmapContents);
}

@media screen and (max-width: 1600px) {
  .roadmapContents li::before {
    left: 16.66%;
  }
}

.roadmapContents li h3 {
  font-size: 64px;
  margin-bottom: 50px;
}

.roadmapContents li .roadmapContentsInner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.roadmapContents li .roadmapContentsInner p {
  font-size: 32px;
  line-height: 48px;
  max-width: 1000px;
}

.roadmapContents li .roadmapContentsInner > img {
  width: 17.64%;
}

.creativeteam {
  background-color: #6ad08d;
  padding: 80px 0;
}

.creativeteamImages {
  display: flex;
  justify-content: center;
  margin-bottom: 65px;
}

.creativeteamImages li {
  width: 256px;
}

.creativeteamImages li:not(:first-of-type) {
  margin-left: 80px;
}

.creativeteamImages li img {
  width: 100%;
}

.creativeteam > h2 {
  text-align: center;
  font-size: 96px;
  color: #ecff84;
  margin-bottom: 50px;
}

.creativeteam p {
  font-size: 32px;
  line-height: 48px;
  text-align: center;
  color: #ecff84;
}

footer {
  background-color: #838383;
  padding: 30px 20px;
}

footer nav {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .logo {
  width: 165px;
}

footer .links {
  padding-right: 15vw;
}

footer .links li:not(:first-of-type) {
  margin-top: 20px;
}

footer .links a {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
}

footer small {
  display: block;
  margin-top: 52px;
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  header {
    position: relative;
    top: auto;
    left: auto;
    padding: 0 5px;
    background-color: #847CE3;
    transform: none;
    margin-bottom: -1px;
  }
  header nav .logo {
    width: 100px;
  }
  header .links {
    font-size: 12px;
  }
  header .links .roadmaplink, header .links .open-sea {
    margin: 0;
  }
  header .links .open-sea a {
    width: auto;
    height: auto;
    padding: 6px;
  }
  header .links > li:not(:first-of-type) {
    margin-left: 10px;
  }
  .firstview {
    padding: 0;
    padding-bottom: 30px;
    position: relative;
  }
  .firstview > .title {
    width: 60%;
  }
  .firstview > p {
    margin-left: 0;
    font-size: 20px;
    line-height: 1.4;
    padding: 0 10px;
    width: 100%;
  }
  .firstview .charactor {
    top: 5px;
    width: 37%;
  }
  .firstview .swiper {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .firstview .swiper img {
    height: 81.5vw;
  }
  .firstview .swiper p {
    font-size: 20px;
    margin-top: 5px;
  }
  .roadmap {
    padding: 60px 0 90px;
  }
  .roadmap::before {
    left: 5%;
  }
  .roadmap .inner h2 {
    font-size: 40px;
  }
  .roadmap .inner p {
    font-size: 20px;
    line-height: 1.4;
  }
  .roadmapContents {
    margin-top: 60px;
  }
  .roadmapContents li {
    padding-left: 2vw;
  }
  .roadmapContents li::before {
    left: 0;
    transform: translateX(-110%);
    font-size: 12px;
  }
  .roadmapContents li h3 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .roadmapContents li .roadmapContentsInner {
    display: block;
  }
  .roadmapContents li .roadmapContentsInner p {
    font-size: 20px;
    line-height: 1.4;
  }
  .roadmapContents li .roadmapContentsInner > img {
    display: block;
    width: 80%;
    margin: 30px auto 0;
  }
  .creativeteam > h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .creativeteam p {
    font-size: 20px;
    line-height: 1.4;
  }
  .creativeteamImages li {
    width: 40%;
  }
  .creativeteamImages li:not(:first-of-type) {
    margin-left: 5%;
  }
  footer .logo {
    width: 100px;
  }
  footer .links {
    padding-right: 0;
  }
  footer .links li:not(:first-of-type) {
    margin-top: 10px;
  }
  footer .links a {
    font-size: 14px;
  }
  footer small {
    margin-top: 40px;
    font-size: 14px;
  }
}
