/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly. */
:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

@font-face {
  font-family: "arafura";
  src: URL("arafuraa.woff2") format("woff2");
}
html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #000;
  font-family: arafura, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
  /* background-image: url(bg.jpg), url(ptrn.jpg);
  background-size: cover, cover;
  background-repeat: no-repeat, repeat;
  background-position: center, center; */
  font-size: 22px;
  letter-spacing: 0.69px;
  font-weight: 500;
  position: relative;
}
@media (min-width: 1200px) {
  body {
    overflow: hidden;
  }
}

a {
  text-decoration: none;
}
strong {
  font-weight: 900;
}
del {
  text-decoration: line-through;
}
header {
  font-weight: 900;
  font-size: 42px;
  color: #fff;
  margin-bottom: calc(100vh / 2);
}


.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.bg {
  object-fit: cover;
  width: calc(100% + 69px);
  height: calc(100% + 49%);
  position: fixed;
  z-index: -1;
  inset: 0;
}


.leftleft {
  align-items: center;
}
@media (min-width: 1200px) {
  .main {
    height: 100vh;
  }
  .leftleft {
    align-items: flex-start;
  }
  .bg{
    height: auto;
  }
}

.enter {
  position: relative;
  cursor: not-allowed;
}
.btn {
  border: 4px solid #000;
  border-radius: 32px;
  font-weight: 900;
  height: 90px;
  background: #000;
  color: #fff;
  background: transparent url(btnbg.png) no-repeat center center/100% 100%;
  cursor: pointer;
  font-size: 26px;
  padding: 16px;
  width: 100%;
  text-align: center;
  position: relative;
  user-select: none;
}
.rat {
  position: absolute;
  width: 280px;
  top: -100px;
  left: 0;
}
@media (min-width: 768px) {
  .btn {
    min-width: 370px;
    height: 120px;
    font-size: 36px;
  }
  .rat {
    width: unset;
    position: absolute;
    top: -300px;
    left: -180px;
  }
}

.docs {
  display: grid;
  grid: auto/1fr 1fr;
  gap: 32px;
  position: absolute;
  bottom: 0;
}
.docs img {
  border-radius: 32px;
  max-width: calc((100vw) / 3);
}

.disintegration-container {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
}
.disintegration-container > canvas {
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
  opacity: 1;
  transform: rotate(0deg) translate(0px, 0px) rotate(0deg);
  overflow: hidden;
}

.cdlogo-smoke {
  filter: url("#filter");
  position: absolute;
  bottom: 0;
  right: 0;
  display: none;
}
.tr {
  transform-origin: top;
  transition: transform 1.69s ease-in-out;
  /* transform: translate(-69px, -33%) scale(1.137); */
  transform: translate(-39px, -29%);
  overflow: unset;
}
@media(min-width:1200px){
  .tr {
    transform: translate(-69px, -49%);
    overflow: unset;
  }
}
.inplague {
  position: relative;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadein ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .cdlogo-smoke {
    display: initial;
  }
  .inplague {
    flex-direction: row;
    /* margin-top: 49%; */
    justify-content: flex-start;
    transform: none;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.smk {
  font-weight: 900;
  color: #fff;
  font-size: 52px;
  text-align: center;
  filter: blur(3px) contrast(120%);
}

.mint {
  background: #fff;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #000;
  border-radius: 16px;
}


.mintcont {
  order: 1;
  margin-bottom: 40px;
}
.docsleft{
  display: flex;
  font-size: 32px;
  justify-content: center;
  padding: 10px;
  gap: 8px;
  color: #fff;
  background: #282c2eb5;
  font-weight: 900;
  border: 2px solid black;
  width: 100%;
  border-radius: 16px;
  user-select: none;
}
@media (min-width: 1200px) {
  .mintcont {
    order: 2;
    margin-bottom: 0px;
  }
}
hr {
  border: 2px solid #f3f3f3;
  width: 100%;
  transform: rotate(-2deg);
}
p {
  padding: 16px;
}

.docfdoc {
  padding: 12px 16px;
  position: relative;
  font-size: 30px;
  background: #000;
  color: #fff;
  letter-spacing: 0.2px;
  font-weight: 900;
  width: 100%;
  text-align: center;
}
.mintbtns {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .mintbtns {
    flex-direction: row;
  }
}

.mint-select,
.mintbtn {
  border: 4px solid #000;
  border-radius: 16px;
  font-weight: 900;
  background: #ffca3e;
  color: #000;
  cursor: pointer;
  font-size: 42px;
  width: 100%;
  text-align: center;
  padding-top: 16px;
  position: relative;
  display: flex;
  justify-content: center;
}
.mintbtn {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  gap: 4px;
}
.mint-select {
  background: #ff3e3e;
  width: 100%;
  padding: 16px 16px 0 16px;
  font-size: 32px;
}
@media (min-width: 768px) {
  .mint-select {
    width: max-content;
  }
}

.owl {
  position: absolute;
  right: 40px;
  top: -130px;
  height: 150px;
}

@media (min-width: 728px) {
  .owl {
    position: absolute;
    right: -30px;
    top: -130px;
  }
}

.docdocdoc {
  /* animation: fadein ease 3s; */
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  visibility: visible;
  opacity: 1;
  order: 2;
  max-width: 85vw;
}

@media (min-width: 1200px) {
  .docdocdoc {
    order: 1;
    max-width: 60vw;
  }
}

@keyframes swing {
  20% {
    transform: rotate(8deg);
  }
  40% {
    transform: rotate(-8deg);
  }
  60% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
