.opening-text {
  float: right;
  font-size: 0.4em;
  letter-spacing: 0.1em;
  padding-top: 1.5em;
}

.title-md._15ch {
  max-width: 15ch;
}

.mt-4 {
  margin-top: 4em;
}

.bg-purple-800-gradient {
  background-image: linear-gradient(117deg, #ba42ca, #6a1be4);
}

.bg-black {
  background-color: #000;
}
.mint-keys {
  /* display: flex; */
  column-gap: 1.5rem;
  width: 60%;
  /* bottom: 10%; */
  margin: 0 auto;

  /* position: absolute;
  left: 0;
  right: 0;
  bottom: 20%; */
}


.button.mint-your-key,
.button {
  column-gap: 0.5em;
  padding-left: 1em;
  padding-right: 2em;
  min-height: 50px;
  min-width: 15em;
  padding: 0.15em 0.35em;
  /* margin-bottom: 1em; */
}

.button.mint-your-key.with-border {
  border: 3px solid #9a1e9e;
}

.button.mint-your-key:hover {
  background: linear-gradient(117deg, #ba42ca, #6a1be4);
}

.button.launch {
  padding-left: 1em;
  background-image: url("../images/632b16ba7f770f6ddc20c364_rocket.svg"),
    linear-gradient(117deg, #ba42ca, #6a1be4);
  background-position: 12% 50%, 0px 0px;
  background-size: auto, auto;
  background-repeat: no-repeat, repeat;
}

.mint-keys .btns {
    margin: auto; white-space: nowrap
}
.button.mint-your-key:hover {
  
} 

@media screen and (max-width: 767px) {
    .mint-keys {
        display: block;
        width: 40%;
        margin-top:20%;
        font-size: 9px;
        margin:0 auto;
      }
      .mint-keys .btns {
        margin-bottom: 1em;
    }
    .button {
      padding: .05em .15em;
    }
    .button-label {
      font-size: inherit;
  }
  }

.section-under-navbar.bg-tile-top-lg.bg-neutral-600 {
  background-size: contain !important;
}

@media screen and (max-width: 468px) {
  .section.homepage {
    height: auto;
    min-height: 25vh;
  }
  .mint-keys {
    margin:0 auto;
    margin-top:20%;
    font-size:12px;
    display: grid;
    justify-content: center;
    
  }
}
@media screen and (min-width: 468px) and (max-width: 768px) {
  .section.homepage {
    height: auto;
    min-height: 50vh;
    background-size: cover;
  }
}

@media screen and (min-width: 469px) {

  .mint-keys {
    display: flex;   
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5%;
    width:50%;
    justify-content: center;
    
  }
}

@media screen and (min-width: 769px)  {
  .mint-keys {
    bottom:20%;
    margin:0 auto;
    justify-content: center;
  }
}



.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}