* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'HarmonyOS Sans SC';
}
:root {
  --cursor-default: url(/image/cursor/cursor_default.png);
  --cursor_pointer: url(/image/cursor/cursor_pointer_test.png);
  --cursor_text: url(/image/cursor/cursor_text.png);
  --select-bg: #34ff98;
  --select-text: #000000;
  --text-gold: #c29e3e;
  --border-paper: #ffefdc;
  --gray0: #f0f0f0;
  --gray1: #c8c8c8;
  --load-gray0: #b4b4b4;
  --load-gray1: #505050;
  --load-gray2: #282828;
  --nav-box: 0.8s cubic-bezier(0.6, 0, 0.4, 1);
  --nav-radius: 0.8s linear;
}
@view-transition {
  navigation: auto;
}
/* 创建自定义动画 */
@keyframes move-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes move-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}
/* 将自定义动画应用于新旧页面状态 */
::view-transition-old(root) {
  animation: 1s cubic-bezier(0.87, 0, 0.13, 1) both move-out;
}
::view-transition-new(root) {
  animation: 1s cubic-bezier(0.87, 0, 0.13, 1) both move-in;
}
a > * {
  pointer-events: none;
}
#gotop {
  position: fixed;
  display: none;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  width: 70px;
  height: 80px;
  color: white;
  mix-blend-mode: difference;
  user-select: none;
}
#gotop .arrow {
  width: 80px;
  height: 60px;
}
#gotop p {
  font-family: 'DouyinSans';
  text-align: center;
}
::selection {
  background-color: var(--select-bg);
  color: var(--select-text);
}
::-moz-selection {
  background-color: var(--select-bg);
  color: var(--select-text);
}
/*火狐浏览器*/
::-webkit-selection {
  background-color: var(--select-bg);
  color: var(--select-text);
}
/*谷歌*/
.debug {
  background-image: url(/image/debug/debugline_low.png);
  background-repeat: repeat;
  image-rendering: pixelated;
}
.showthis {
  display: block;
}
.hidethis {
  display: none;
}
.invisible {
  opacity: 0;
}
.no-href {
  pointer-events: none;
}
.pixel {
  image-rendering: pixelated;
}
.showplatform::before {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  content: "🖥️PC";
  color: purple;
}
/* 隐藏整个页面的滚动条但保持滚动功能 */
html,
body {
  /* Firefox */
  scrollbar-width: none;
  background-color: black;
}
/* WebKit浏览器 (Chrome, Safari, Edge) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}
footer {
  position: fixed;
  color: #ffffff;
  mix-blend-mode: difference;
  z-index: 99;
  bottom: 20px;
  left: 30px;
  pointer-events: none !important;
  user-select: none !important;
}
footer .showprogress {
  font-size: 30px;
  line-height: 30px;
  font-family: 'DouyinSans';
}
footer .copyright {
  font-size: 14px;
}
#navigate {
  position: fixed;
  background-color: #f0f0f0;
  box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.2);
  transition: width var(--nav-box), height var(--nav-box), left var(--nav-box), bottom var(--nav-box), border-radius var(--nav-box);
  z-index: 100;
  overflow: hidden;
}
#navigate .navbar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: fit-content;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
#navigate .navbar a {
  text-align: center;
  margin: 8px;
  color: black;
  text-decoration: none;
  transition: 0.4s;
}
#navigate .navbar a p {
  font-size: 38px;
  line-height: 38px;
  font-family: 'DouyinSans';
  transition: 0.4s;
}
#navigate .shownav {
  opacity: 1;
  pointer-events: auto;
}
#navigate .shownav a:hover {
  transform: translateX(20px);
}
#navigate .shownav a:hover p {
  text-shadow: -20px 0 6px rgba(0, 0, 0, 0.3);
}
#navigate .shownav a p {
  -webkit-animation: swing-in-top-fwd 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
  animation: swing-in-top-fwd 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
  /* 不在这里设置 delay，由下面的子规则覆盖 */
  text-shadow: 0 0 6px rgba(0, 0, 0, 0);
}
@-webkit-keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
    transform: rotateX(-100deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}
@keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
    transform: rotateX(-100deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}
#navigate .open {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s;
}
#navigate .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s;
}
#navigate .show {
  opacity: 1;
  pointer-events: all;
}
#navigate svg {
  z-index: 1;
  pointer-events: none;
}
.navigate_off {
  left: 30px;
  bottom: 120px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.navigate_on {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  border-radius: 0;
}
.loading {
  display: grid;
  grid-template-columns: 1fr 1.8fr 4fr 1.8fr 1fr;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  z-index: 200;
  pointer-events: none;
}
.loading .loading_block {
  pointer-events: all;
}
.loading #lb1 {
  background-color: var(--load-gray2);
  z-index: 1;
}
.loading #lb2 {
  background-color: var(--load-gray1);
  z-index: 2;
}
.loading #lb3 {
  background-color: var(--load-gray0);
  z-index: 3;
}
.loading #lb4 {
  background-color: var(--load-gray1);
  z-index: 2;
}
.loading #lb5 {
  background-color: var(--load-gray2);
  z-index: 1;
}
.load-slide-in-top-z3 {
  -webkit-animation: load-slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
  animation: load-slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}
.load-slide-in-top-z2 {
  -webkit-animation: load-slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
  animation: load-slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}
.load-slide-in-top-z1 {
  -webkit-animation: load-slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
  animation: load-slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}
@-webkit-keyframes load-slide-in-top {
  0% {
    -webkit-transform: translateY(-100dvh);
    transform: translateY(-100dvh);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes load-slide-in-top {
  0% {
    -webkit-transform: translateY(-100dvh);
    transform: translateY(-100dvh);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.load-slide-out-top-z3 {
  -webkit-animation: load-slide-out-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
  animation: load-slide-out-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}
.load-slide-out-top-z2 {
  -webkit-animation: load-slide-out-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
  animation: load-slide-out-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
}
.load-slide-out-top-z1 {
  -webkit-animation: load-slide-out-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both;
  animation: load-slide-out-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both;
}
@-webkit-keyframes load-slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100dvh);
    transform: translateY(-100dvh);
  }
}
@keyframes load-slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100dvh);
    transform: translateY(-100dvh);
  }
}
.dev-warning {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 200;
  pointer-events: none;
}
.dev-warning .dev-warning-bar {
  position: absolute;
  width: 200%;
  height: 30px;
  transform-origin: 50% 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dev-warning .dev-warning-bar .item-box {
  position: relative;
  width: 1400px;
  height: 30px;
  overflow: hidden;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000000 10%, #000000 90%, rgba(0, 0, 0, 0));
}
.dev-warning .dev-warning-bar .item-box .item {
  position: absolute;
  left: 100%;
  width: 380px;
  height: 30px;
  animation: devScrollLeft 16s linear infinite;
}
.dev-warning .dev-warning-bar .item-box .item::before {
  content: '开发中 | UNDER DEVELOPMENT';
  font-size: 24px;
  line-height: 30PX;
}
.dev-warning .dev-warning-bar .item-box .item.item1 {
  animation-delay: calc(16s / 4 * (4 - 1) * -1);
}
.dev-warning .dev-warning-bar .item-box .item.item2 {
  animation-delay: calc(16s / 4 * (4 - 2) * -1);
}
.dev-warning .dev-warning-bar .item-box .item.item3 {
  animation-delay: calc(16s / 4 * (4 - 3) * -1);
}
.dev-warning .dev-warning-bar .item-box .item.item4 {
  animation-delay: calc(16s / 4 * (4 - 4) * -1);
}
.dev-warning .dev-warning-bar .item-box .item.item5 {
  animation-delay: calc(16s / 4 * (4 - 5) * -1);
}
.dev-warning .dev-warning-bar.one {
  top: 12%;
  left: -50%;
  transform: rotate(4deg);
  background-color: #f90;
}
.dev-warning .dev-warning-bar.two {
  top: 7%;
  left: -50%;
  transform: rotate(-2deg);
  background-color: #f80;
}
.dev-warning .dev-warning-bar.three {
  bottom: 10%;
  left: -50%;
  transform: rotate(1deg);
  background-color: #f90;
}
.dev-warning .dev-warning-bar.four {
  bottom: 5%;
  left: -50%;
  transform: rotate(-3deg);
  background-color: #f80;
}
@keyframes devScrollLeft {
  to {
    left: -350px;
  }
}
.dotcover {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}
.dotcover.x1 {
  background-image: url(/image/main/dot.png);
}
.dotcover.x2 {
  background-image: url(/image/main/dotx2.png);
  z-index: 2;
}
.topbox {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: black;
  transition: opacity 0.5s;
}
.topbox .cover-anime {
  position: absolute;
  transform-origin: bottom;
  bottom: 0;
  left: 10%;
  transform: scale(1.3, 1.3);
  z-index: 1;
}
.topbox .bullet-hole {
  width: 256px;
  height: 256px;
  background-image: url(/image/main/hole.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(1.2, 1.2);
  position: absolute;
}
.topbox .bullet-hole.one {
  transform-origin: 0 0;
  transform: scale(1.2, 1.2) rotateY(180deg);
  bottom: 0;
  right: 20%;
}
.topbox .bullet-hole.two {
  transform-origin: 100% 0;
  top: 0;
  right: 0;
}
.topbox .cover-elements {
  position: absolute;
  color: white;
  padding: 60px;
  right: 4%;
  width: 40%;
  min-width: 660px;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}
.topbox .cover-elements .border {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.topbox .cover-elements .top-ele h1 {
  font-size: 120px;
  line-height: 120px;
  font-family: serif;
  letter-spacing: 20px;
}
.topbox .cover-elements .wanted-pic {
  width: 320px;
  border: 1px solid white;
  padding: 20px;
}
.topbox .cover-elements .wanted-pic div {
  width: 100%;
  aspect-ratio: 1/1;
  background-image: url(/image/shuninyu.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.topbox .cover-elements .introduction {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.topbox .cover-elements .introduction .hello {
  font-size: 40px;
  font-family: 'DouyinSans';
}
.topbox .cover-elements .introduction .nickname {
  background-image: url(/image/main/title-nickname.png);
  width: 300px;
  height: 130px;
  background-size: cover;
  background-repeat: no-repeat;
}
.topbox .cover-elements .scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
}
.topbox .cover-elements .scroll-down p {
  text-align: center;
  font-family: 'DouyinSans';
}
.topbox .cover-elements .scroll-down svg {
  animation: bounce 1s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.backgroundbox {
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: black;
  opacity: 0;
  pointer-events: none;
}
.backgroundbox .pic {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url(/image/main/bgtest.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  opacity: 0.5;
}
.backgroundbox .dotcover {
  z-index: 2;
}
.animbox {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100%;
  background-image: linear-gradient(to bottom, #059dfd 0%, #059dfd 40%, #00deff 88%, green 88%);
}
.animbox .animbg {
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 204px;
  bottom: 0;
  background-image: url(/image/main/grass.png);
  z-index: 3;
}
.animbox .bike {
  position: absolute;
  pointer-events: none;
  width: 313px;
  height: 315px;
  bottom: 150px;
  right: 100px;
  background-image: url(/image/main/bike.png);
  z-index: 1;
}
.animbox .character {
  position: absolute;
  pointer-events: none;
  width: 240px;
  height: 320px;
  bottom: 207px;
  right: 230px;
  background-image: url(/image/main/character.png);
  z-index: 2;
  animation: wave 0.5s steps(5) infinite alternate;
  -webkit-animation: wave 0.5s steps(5) infinite alternate;
}
@keyframes wave {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1200px 0;
  }
}
.animbox .clouds {
  position: absolute;
  pointer-events: none;
  width: 1920px;
  height: 400px;
  top: 0;
  background-image: url(/image/main/clouds.png);
  z-index: 0;
}
.animbox .itembox {
  position: absolute;
  pointer-events: none;
  width: 1000px;
  height: 380px;
  top: 330px;
  background-image: url(/image/main/itembox.png);
  image-rendering: pixelated;
  transform: scale(80%);
  z-index: 0;
}
.animbox .borderbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 60px;
  z-index: 4;
}
.animbox .borderbox .outborder {
  width: 100%;
  height: 100%;
  padding: 2px;
  border: 1px solid white;
}
.animbox .borderbox .outborder .inborder {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px dashed white;
}
.scaler {
  height: 0;
}
.scroll-container {
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}
.contentbox {
  position: sticky;
  top: 0;
  z-index: 3;
  width: auto;
  max-width: 1200px;
  height: 100vh;
  height: 100dvh;
  border-radius: 30px;
  margin: 0 auto;
  overflow: hidden;
}
.contentbox p {
  width: fit-content;
}
.contentbox .boxtopbar {
  height: 40px;
  background-color: black;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}
.contentbox .boxtopbar p {
  color: white;
  font-size: 26px;
  text-align: center;
  letter-spacing: 4px;
  word-spacing: 5px;
  font-family: 'DouyinSans';
}
.contentbox .img {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
}
.contentbox .img p {
  position: absolute;
  right: 10px;
  bottom: -30px;
  font-size: 20px;
  font-family: 'DouyinSans';
}
.contentbox .img p::before {
  content: '※';
}
.contentbox .topic {
  position: relative;
  font-size: 100px;
  font-family: 'DouyinSans';
  margin-top: 50px;
  z-index: 4;
  user-select: none;
}
.contentbox .description {
  position: relative;
  font-size: 30px;
  color: black;
  z-index: 4;
}
.s2d .i1 {
  top: 40px;
  left: 300px;
  rotate: 14deg;
  width: 150px;
  height: 200px;
  background-image: url(/image/main/paper.png);
  background-size: cover;
  z-index: 3;
}
.s2d .i2 {
  bottom: 40px;
  right: 0;
  width: 600px;
  height: 600px;
  background-image: url(/image/main/zelda.png);
  background-size: cover;
}
.s2d .i3 {
  bottom: 0;
  right: 600px;
  width: 350px;
  height: 496px;
  background-image: url(/image/art/donk.avif);
  background-size: contain;
}
.anime .i1 {
  bottom: 40px;
  right: 0;
  width: 400px;
  height: 400px;
  background-image: url(/image/main/sun.gif);
  background-size: contain;
}
.anime .i2 {
  top: 330px;
  right: 200px;
  width: 125px;
  height: 125px;
  background-image: url(/image/main/mm.gif);
  background-size: contain;
}
.anime .i3 {
  top: 60px;
  left: 340px;
  width: 200px;
  height: 200px;
  z-index: 4;
  background-image: url(/image/main/attackshowcase.gif);
  background-size: contain;
}
.anime .i4 {
  bottom: 40px;
  right: 200px;
  width: 645px;
  height: 630px;
  background-image: url(/image/main/mickey_wave_compressed.png);
}
.os .i1 {
  top: 200px;
  right: 40px;
  width: 384px;
  height: 128px;
  background-image: url(/image/main/animecursor.gif);
  background-size: contain;
}
.os .i2 {
  top: 380px;
  right: 100px;
  width: 300px;
  height: 260px;
  background-image: url(/image/gallery/smooscroll-logo.webp);
  background-size: 200px 200px;
  background-position: center;
}
.bottombox {
  position: relative;
  z-index: 4;
  width: auto;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}
.black {
  background-color: black;
  border-radius: 0;
  box-shadow: none;
}
.gray0 {
  background-color: var(--gray0);
  border: solid 10px var(--gray0);
}
.gray1 {
  background-color: var(--gray1);
  border: solid 10px var(--gray1);
}
.gap {
  width: auto;
  height: 300px;
}
#starCanvas {
  position: absolute;
  display: block;
  min-width: 1200px;
  width: 100%;
  min-height: 800px ;
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
}
.links {
  margin-top: 200px;
  padding: 0 90px;
}
.links .cardtitle {
  color: #ff8c00;
  position: relative;
  user-select: none;
  margin-top: 40px;
  -webkit-text-stroke: 1px #323232;
}
.links .cardtitle .kpdh {
  display: inline-block;
  font-size: 80px;
  line-height: 80px;
  font-family: 'Douyin Sans';
}
.links .cardtitle .kpdh_en {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 4px;
  word-spacing: 4px;
  text-transform: uppercase;
  font-family: 'Douyin Sans';
}
.links .cardcontainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  flex-grow: 0;
  flex-shrink: 0;
}
.links .cardcontainer .cardwrap {
  perspective: 500px;
  width: 260px;
  height: 380px;
  margin: 20px 20px 120px 0;
}
.links .cardcontainer .cardwrap .card {
  display: block;
  transition: transform 1.4s, height 1.5s;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  width: 260px;
  height: 380px;
  border-radius: 20px;
  border: 2px solid white;
  background-color: black;
  transform: rotateY(-5deg);
  z-index: 5;
}
.links .cardcontainer .cardwrap .card:hover {
  transform: rotateY(10deg);
  height: 480px;
  transition: transform 1.4s, height 0.5s;
}
.links .cardcontainer .cardwrap .card .cardicon {
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 76px;
  height: 76px;
  z-index: 6;
  margin: 0 auto;
  margin-top: 240px;
}
.links .cardcontainer .cardwrap .card .cardtext {
  color: #f0f8ff;
  font-size: 38px;
  font-weight: lighter;
  text-align: center;
  z-index: 6;
}
.links .cardcontainer .cardwrap .card .cardinfo {
  padding-top: 12px;
  padding-left: 40px;
  padding-right: 40px;
  color: #ffffff;
  font-size: 18px;
  font-weight: lighter;
}
@media (max-width: 1200px) {
  .showplatform::before {
    content: "💻️Middle";
    color: orange;
  }
}
@media (max-width: 768px) {
  * {
    cursor: auto !important;
  }
  .showplatform::before {
    content: "📱Phone";
    color: green;
  }
  .animbox .bike {
    right: -20px;
  }
  .animbox .character {
    right: 110px;
  }
  .animbox .borderbox {
    padding: 20px;
  }
  .scaler {
    height: 500px;
  }
  .contentbox .boxtopbar p {
    font-size: 20px;
    letter-spacing: 2px;
    word-spacing: 3px;
  }
  .contentbox .topic {
    font-size: 60px;
    margin-top: 30px;
  }
  .contentbox .description {
    font-size: 20px;
  }
  .s2d .i1 {
    top: 10px;
    left: 140px;
    transform: scale(70%);
  }
  .anime .i1 {
    top: 160px;
    right: -80px;
    transform: scale(60%);
  }
  .anime .i2 {
    top: 500px;
    right: 200px;
    transform: scale(80%);
  }
  .anime .i3 {
    top: 30px;
    left: 180px;
    transform: scale(80%);
  }
  .anime .i4 {
    right: -200px;
    bottom: -80px;
    transform: scale(60%);
  }
  .os .i1 {
    top: 240px;
    right: 0;
    transform: scale(80%);
  }
  .os .i2 {
    top: 360px;
    right: 0;
    transform: scale(80%);
  }
  .links {
    padding: 30px;
    margin-top: 0;
  }
  .links .cardtitle h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .links .cardtitle p {
    font-size: 16px;
    line-height: 16px;
  }
  .links .cardcontainer {
    justify-content: center;
  }
}
