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

body {
  background-color: #0a0030;
  background-image: url(/images/stars2.png);
  font-family: "Kdam Thmor Pro", "Courier New", Courier, monospace;
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 1.5px;
}
body::-webkit-scrollbar {
  width: 0.5rem;
}
body::-webkit-scrollbar-track {
  background: black;
}
body::-webkit-scrollbar-thumb {
  background: rgb(226, 41, 66);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

main {
  padding-top: 7rem;
}

h2 {
  padding-bottom: 1rem;
  color: rgb(226, 41, 66);
}

p {
  margin-bottom: 1rem;
}

h4 {
  padding-bottom: 5px;
  color: rgb(226, 41, 66);
}

/* Navigation Bar */
.navbar {
  padding: 1rem;
  height: 5rem;
  width: 100%;
  background-color: rgba(9, 0, 41, 0);
  position: -webkit-sticky;
  position: sticky;
}

#logo {
  max-width: 3.4rem;
  filter: drop-shadow(.1rem .1rem .1rem rgb(0, 0, 0));
}
@media screen and (max-width: 350px) {
  #logo {
    max-width: 2.5rem;
    margin-top: 5px;
  }
}

.navbar-ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-end;
}
@media screen and (max-width: 450px) {
  .navbar-ul {
    gap: 1rem;
  }
}
@media screen and (max-width: 350px) {
  .navbar-ul {
    gap: 0.5rem;
  }
}

#nav-logo {
  margin-right: auto;
}

.nav-link {
  text-decoration: none;
  font-weight: bold;
  font-style: italic;
  font-size: clamp(0.65rem, 2vw, 1.1rem);
  color: rgb(255, 255, 255);
}
.nav-link:hover {
  color: rgb(226, 41, 66);
  transition: 300ms;
}

.nav-icons {
  max-width: 25px;
  border-radius: 50%;
}
.nav-icons:hover {
  max-width: 28px;
  background-color: rgb(226, 41, 66);
  transition: 300ms;
}
@media screen and (max-width: 850px) {
  .nav-icons {
    max-width: 20px;
  }
}
@media screen and (max-width: 450px) {
  .nav-icons {
    max-width: 15px;
  }
}
@media screen and (max-width: 350px) {
  .nav-icons {
    max-width: 13px;
  }
}

/* go back to top button */
.gotopbtn{
  border-radius: 30%;
  position: fixed;
  width: 45px;
  height: 45px;
  background: rgb(226, 41, 66);
  bottom: 1.4rem;
  left: 1.6rem;

  text-decoration: none;
  text-align: center;
  line-height: 45px;
  color: white;
  font-size: 22px;
}

/* Opensea coming soon tooltip (delete after uptade) */
.navoi{
  text-decoration: none;
  position: relative;
}
.navtooltip{
  color: white;
  position: absolute;
  left: -50%;
  top: 0;
  transform: translateX(-50%);
  background-color: rgb(226, 41, 66);
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 7px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.navtooltip::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(50%);
}
.navoi:hover .navtooltip{
  top: 110%;
  visibility: visible;
  opacity: 1;
  
}


/* Header slogan and mint button section */
#welcome-mint {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  gap: 2rem;
  font-size: clamp(0.75rem, 2vw, 1.5rem);
}
.btn-form{
  width: 100%;
  max-width: 5rem;
  height: 2rem;
}
.btn {
  background-color: rgb(226, 41, 66);
  width: 100%;
  max-width: 5rem;
  height: 2rem;
  border: 0;
  box-shadow: 2px 2px rgb(0, 0, 0);
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: rgb(255, 255, 255);
}
.btn:hover{
  background-color: rgb(166, 33, 51);
}

.mc-div {
  margin: 5rem 0.5rem;
  padding-bottom: 200px;
}

.mc-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.bi-mc-div {
  flex: 0 1 45ch;
  font-size: clamp(0.75rem, 2vw, 1.25rem);
}

.bella-img {
  width: 33rem;
  height: auto;
  border-radius: 4px;
  margin-top: 2rem;
}
@media screen and (max-width: 950px) {
  .bella-img {
    width: 30rem;
  }
}
@media screen and (max-width: 600px) {
  .bella-img {
    width: 20rem;
  }
}
@media screen and (max-width: 450px) {
  .bella-img {
    width: 18rem;
  }
}

.contentimg-container {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.content-img {
  width: 100%;
  height: auto;
  max-width: 13rem;
  border-radius: 4px;
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
  .content-img {
    width: 11rem;
  }
}
@media screen and (max-width: 450px) {
  .content-img {
    width: 9rem;
  }
}

.creator-pictures {
  display: flex;
  gap: 1rem;
}

.creator-name {
  font-weight: bold;
}

.italic-font {
  font-style: italic;
}

.box {
  width: 100%;
  max-width: 80rem;
  margin: 10rem auto;
  border-radius: 7px;
  box-shadow: 10px 20px 10px rgba(0, 0, 0, 0.3);
  padding: 1rem 1.5rem 1rem 1.5rem;
}

.box .heading {
  border-radius: 0.4rem;
  padding: 10px;
  color: #fff;
  text-align: center;
  font-size: clamp(0.75rem, 2vw, 1.5rem);
  font-weight: 700;
}

details {
  background: rgb(226, 41, 66);
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 0.4rem;
  margin-bottom: 1rem;
  font-size: clamp(0.75rem, 2vw, 1.25rem);
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s;
}
details:hover {
  background: rgba(221, 41, 65, 0.828);
}

summary {
  outline: none;
  list-style: none;
  display: flex;
  align-items: center;
}

details[open] summary ~ * {
  -webkit-animation: sweep 0.5s ease-in-out;
          animation: sweep 0.5s ease-in-out;
}

details[open] .fa-angle-down {
  transform: rotate(180deg);
  transition-duration: 0.3s;
}

@-webkit-keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.answer {
  padding-left: 20px;
  margin-top: 10px;
}
.qa-mint{
  color: white;
  text-decoration: none;
}
.qa-mint:hover{
  text-decoration: underline;
  transition: 300ms;
  color:rgb(14, 1, 62); 
}
.fa-angle-down {
  margin-left: auto;
}

/* Footer Contents  */
.bi-footercontent {
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1px;
  flex-wrap: wrap;
}

/* Footer Banner*/
.footer-logo-div {
  margin: auto;
  display: flex;
  flex-direction: row;
  filter: drop-shadow(.1rem .1rem .1rem rgb(0, 0, 0));
}

.footer-banner {
  display: block;
  width: 100%;
  height: auto;
  margin: 0.5rem;
}

/* Footer links and text */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 4rem;
}

.footer-links-lg {
  margin-left: auto;
}

.footer-icons {
  max-width: 25px;
  border-radius: 50%;
}
.footer-icons:hover {
  max-width: 28px;
  background-color: rgb(226, 41, 66);
  transition: 300ms;
}

.footer-text {
  font-size: 12px;
}

/* Opensea coming soon tooltip (delete after uptade) */
.footoi{
  text-decoration: none;
  position: relative;
}
.tooltip{
  color: white;
  position: absolute;
  left: -50%;
  top: 0;
  transform: translateX(-50%);
  background-color: rgb(226, 41, 66);
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 7px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.tooltip::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(50%);
}
.footoi:hover .tooltip{
  left: -250%;
  visibility: visible;
  opacity: 1;
  
}

/* Last Line of the page*/
.last-line-div {
  width: 100%;
  padding: 0;
  margin: 0;
}

.last-line {
  border-bottom: 8px solid rgb(226, 41, 66);
  max-width: 100%;
  display: block;
}