@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  width: 100vw;
  height: 100svh;
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;

  background-image: url("./images/icon-bg.png");
  background-size: min(1008px, 90vw) auto;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 155px;
}

.container * {
  font-family: 'Inter', sans-serif !important;
}

.container>.bg-color {
  width: max(102%, 1786px);
  height: 918px;
  aspect-ratio: 1786 / 918;
  position: absolute;
  bottom: -400px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;

  background-image: url("./images/color-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.container>.content-container {
  width: min(394px, 100svw);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 16px;

  display: flex;
  align-items: center;
  flex-direction: column;
}

.container>.content-container>.content-wrapper>.banner {
  display: flex;
  padding: 8px 14px;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #F6F6F6;
  margin-bottom: 48px;
  transition: background-color 0.2s;
}

.container>.content-container>.content-wrapper>.banner:hover {
  background-color: #E9E9E9;
}

.container>.content-container>.content-wrapper>.banner>img {
  height: 25px;
}

.container>.content-container>.content-wrapper>.banner>span {
  color: #616664;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
}

.container>.content-container>.content-wrapper>.timeline {
  color: #616664;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.6px;
  margin-bottom: 24px;
}

.container>.content-container>.content-wrapper>.timeline>a {
  color: #080908;
  text-decoration: underline;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.container>.content-container>.content-wrapper>.timeline>a:visited {
  color: #080908;
}

a.black-btn-container {
  display: inline-flex;
}

.black-btn-container {
  border-radius: 10px;
  background: #232927;
  box-shadow: 0px 2px 1px 0px rgba(255, 255, 255, 0.25) inset, 0px -2px 0px 0px #000 inset;
  width: 100%;
  height: 40px;
  padding: 4px 16px;
  align-items: center;
  justify-content: center;
  border: none;
  gap: 4px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
  margin-bottom: 24px;
}

.black-btn-container>svg {
  width: 25px;
  height: 25px;
}

.black-btn-container:hover {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.10) 100%), #081A11;
}

.black-btn-container:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.countdown {
  color: #818885;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.48px;
}

.content-wrapper {
  width: 394px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vector {
  position: absolute;
  right: 5px;
  top: 28px;
  width: 36px;
}


@media screen and (max-width: 1024px) {
  .container>.bg-color {
    width: max(110%, 1024px);
    height: 615px;
    bottom: -150px;
  }
}

@media screen and (max-width: 576px) {
  .container>.bg-color {
    width: max(120%, 556px);
    height: 334px;
    bottom: -100px;
  }

  .container>.content-container {
    width: 100%;
  }

  .container>.content-container>.banner>img {
    height: 20px;
  }

  .container>.content-container>.banner>span,
  .container>.content-container>.timeline,
  .black-btn-container {
    font-size: 16px;
    letter-spacing: -0.48px;
  }

  .black-btn-container>svg {
    width: 20px;
    height: 20px;
  }
}
