:root {
  --bg: #0f1115;
  --fg: #e8ebf0;
  --muted: #a6adbb;
  --accent: #8ecdf7;
  --border: #22273a;
  --navbar-height: 58px;
}

:disabled {
  background-color: lightgray !important;
}

body {
  color: white !important;
  background: repeating-linear-gradient(70deg, rgb(103, 103, 103), rgb(30, 30, 30) max(50vw, 50vh));
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
  width: 100% !important;
}

main {
  text-align: justify;
  overflow-x: hidden;
}

header {
  width: 100%;
}

.navbar {
  background-color: rgba(var(--bs-dark-rgb), 0.8) !important;
}

a {
  color: inherit;
}

a:hover {
  color: blue;
}

.title-div {
  text-align: center;
  justify-content: center;
  align-items: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
  font-size: 2.5rem;
  font-weight: 600 !important;
}

h2 {
  font-weight: bold;
  line-height: 2rem !important;
}

.btn {
  background-color: rgb(13, 157, 240);
}

.btn:hover {
  background-color: rgb(92, 186, 237);
  color: white;
}

.images {
  max-width: 1270px !important;
  margin-top: var(--navbar-height) !important;
  border-radius: 20px;
}

.img-rr {
  transform: rotate(-10deg);
  margin-top: 15px;
}

.img-rl {
  transform: rotate(10deg);
  margin-top: 15px;
}

@media (min-width: 769px) {
  .text-frame {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
}

@media (max-width: 768px) {
  .text-frame {
    margin-left: 1.1rem !important;
    margin-right: 1.1rem !important;
  }

  main img {
    scale: 95%;
    max-width: 400px !important;
    height: auto !important;
    /* border-radius: max(5%, 30px) !important; */
  }

  #terms {
    text-align: left;
  }

  #terms ul,
  #terms ol {
    display: block;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    padding-inline-start: 20px;
  }
}

#terms section {
  background: rgba(63, 68, 88, 0.251);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin: 16px 0
}

#terms h1 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2
}

#terms h2 {
  font-size: 18px;
  margin: 0 0 12px
}

#terms h3 {
  font-size: 16px;
  margin: 18px 0 8px;
  color: var(--accent)
}

#addDiv {
  margin-top: 40px;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

footer {
  text-align: center !important;
  width: 100%;
  min-height: 50px;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 30px;
  background-color: #212529;
  color: white;
}

footer img {
  height: 25px;
  width: auto;
}

.b-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 24px;
}

.mint-box {
  max-width: 700px !important;
}

.mint-box .btn {
  border-radius: 50px;
  border: medium;
  padding: 10px;
  font-weight: bold;
  max-width: 300px;
  width: 50vw;
  cursor: pointer;
}

#nftQuantity {
  max-width: 75px;
  width: 5rem;
  margin: auto;
}

.nftCard {
  background: linear-gradient(180deg, #fff, #fbfcff);
  color: black;
  border-radius: 12px !important;
  overflow: hidden;
}

.nftCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(11, 18, 32, 0.12);
}

.nftCard img {
  width: 100%;
  height: auto !important;
  scale: 100% !important;
}

.nftCard .cardBody {
  padding: 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  justify-content: space-between;
}

.nftCard .cardText {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.nftCard .cardTitle {
  font-weight: 600;
  font-size: .98rem;
}

.nftCard .cardSub {
  font-size: .82rem;
}

@media (min-width: 300px) and (max-width: 560px) {
  #gallery .col {
    width: 50% !important;
  }
}