html {
  scroll-behavior: smooth;
}

/* cute-font-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cute Font';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/cute-font-v22-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ibm-plex-mono-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ibm-plex-mono-v19-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ibm-plex-mono-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/ibm-plex-mono-v19-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  color: #F2F5F8;
  background-color: #010B31;
  font-weight: 400;
  font-style: normal;
}

.header {
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  height: 15.1vh;
  min-height: 100px;
  background-color: #010B31;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.block {
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: top;
  width: 100%;
  background-repeat: no-repeat;
  height: 85vh;
}

.block1 {
  background-image: url("../images/image1.webp");
}

.block2.lazyloaded {
  background-image: url("../images/image2.webp");
}

.block3.lazyloaded {
  background-image: url("../images/image3.webp");
}

.block4.lazyloaded {
  background-image: url("../images/image4.webp");
}

.logo {
  width: 65px;
  height: 65px;
}

.branding {
  display: flex;
  gap: 25px;
  margin-left: 5%;
  margin-bottom: 10px;
}

.header-title {
  font-size: 50px;
  font-family: "Cute Font", sans-serif;
}

.menu-toggle {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navbar {
  margin-right: 5%;
  margin-bottom: 30px;
}

.bar {
  position: relative;
  width: 30px;
  height: 3px;
  background-color: #F2F5F8;
  margin: 5px 0;
  transition: transform 0.3s ease;
  z-index: 111;
}

.bar.bar1.cross {
  transform: rotate(45deg) translate(5px, 6px);
}

.bar.bar2.cross {
  opacity: 0;
}

.bar.bar3.cross {
  transform: rotate(-45deg) translate(5px, -6px);
}

.menu {
  width: 400px;
  height: 100vh;
  list-style-type: none;
  display: none;
  position: absolute;
  background-color: #010B31;
  top: -10px;
  right: -50px;
  padding: 30vh 30px 0 0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: "Cute Font", sans-serif;
}

.menu.active {
  display: block;
}

.menu li {
  margin-bottom: 50px;
}

.menu li:last-child {
  margin-bottom: 0;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 50px;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #ff7f50;
}

.background-filter {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: 350%;
  filter: blur(10px);
  opacity: 0.4;
  background-image: url("../images/image1.webp");
}

.intro {
  position: relative;
  min-height: 85vh;
}

.intro__bg {
  background-position: right top;
}

.summary {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
}

.summary__bg {
  background-position: center bottom;
}

.celebrate__bg {
  background-position: center center;
}

.info {
  position: relative;
  min-height: 100vh;
  scroll-margin-top: 15vh;
}

.info__bg {
  background-position: left bottom;
}

.intro-full {
  position: relative;
  padding-top: 100px;
  padding-left: 10%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 20px;
}

.intro-top {
  width: 40%;
}

.intro-top h1 {
  font-size: 104px;
  line-height: 1;
  font-family: "Cute Font", sans-serif;
}

.intro-top h2 {
  font-size: 48px;
  line-height: 1;
  font-family: "Cute Font", sans-serif;
}

.intro-top p {
  font-size: 16px;
}

.intro-bottom {
  width: 50%;
}

.intro-bottom h3 {
  font-size: 18px;
}

.intro-bottom p {
  font-size: 18px;
}

.summary-full {
  position: relative;
  padding-left: 10%;
  width: 50%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.summary-full p {
  font-size: 18px;
}

.info-block1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.solana {
  width: 500px;
  height: 50px;
  margin-top: 75px;
  margin-bottom: 50px;
}

.info__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 400px;
  margin-bottom: 150px;
}

.info__links img {
  height: 85px;
  width: 85px;
}

.widget {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 100px;
  background: #222831;
  box-shadow: 0px 4px 30px rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgb(210 49 249) 0%, rgb(44 237 170) 100%);
  border: 3px solid #ff00f8;
  width: 550px;
}

.token-info {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: 10%;
  margin-top: 150px;
  margin-bottom: 50px;
  justify-content: start;
  align-items: flex-start;
  gap: 5px;
  font-size: 32px;
  width: 80%;
}

.token-info > :first-child {
  margin-bottom: 45px;
}

.footer {
  position: relative;
}

.footer__links {
  display: flex;
  margin-left: 10%;
  margin-bottom: 50px;
  gap: 10px;
}

.footer__link img {
  height: 38px;
  width: 38px;
}

.footer__warning {
  margin-left: 10%;
  margin-right: 10%;
  padding-bottom: 50px;
  font-weight: bold;
  color: #788597;
}

@media screen and (max-width: 1200px) {
  .menu {
    width: 300px;
  }
}

@media screen and (max-width: 650px) {
  .intro-full {
    text-align: center;
  }

  .intro-top, .intro-bottom {
    width: 100%;
    padding-right: 10%;
  }

  .summary-full {
    width: 100%;
    padding-right: 10%;
    text-align: center;
  }

  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__links {
    padding-left: 0;
  }

  .widget {
    padding: 25px 25px;
    width: 400px;
  }

  .solana {
    width: 400px;
  }

  .info__links img {
    height: 70px;
    width: 70px;
  }

  .menu {
      width: 200px;
      padding-right: 20x;
  }

  .menu li a {
    font-size: 25px;
  }
}

@media screen and (max-width: 450px) {
  .intro-top p b {
    font-size: 20px;
  }

  .intro-top p span {
    font-size: 14px;
  }

  .intro-bottom h3 {
    font-size: 16px;
  }

  .intro-bottom p {
    font-size: 16px;
  }

  .summary-full p {
    font-size: 16px;
  }

  .widget {
    padding: 0;
    width: 100%;
    min-width: 320px;
  }

  #integrated-terminal {
    width: 100%;
  }

  .info__links {
    width: 100%;
  }

  .header-title {
    font-size: 42px;
  }

  .branding {
    gap: 10px;
  }

  .solana {
    width: 300px;
  }

  .token-info {
    font-size: 20px;
  }

  .footer__warning {
    font-size: 12px;
  }
}
