@import url("https://fonts.googleapis.com/css?family=Press Start 2P");

html {
    scroll-behavior: smooth;
}



body {
    background-color: #2C3E50;
    color: #000000;
    font-family: 'Press Start 2P';
    font-weight: 600;
    align-items: center;
    overflow-x: hidden;
    /*display: flex;
flex-flow: column; */
}

h1 {
    color: white;
    text-align: center;
    font-size: 50pt;
}

h3 {
    font-size: 30pt;
    color: white;
    text-align: center;
}

.wrapper {
  text-align: center;
  padding-top: 50px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}


/* Header styles */
.header {
  background-color: #2C3E50;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 1000;
  width: 100%;
}



/* Logo styles */
.logo img {
  display: block;
  height: 50px;
}

/* Menu icon styles */
.menu-icon {
  display: none;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: #333;
}

/* Menu styles */
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  margin-left: 30px;
}

.menu a {
  text-decoration: none;
  color: #ffffff;
  margin: 0 10px;
  font-size: 18px;
  margin-left: 30px;
}


.main {
    padding-top: 200px;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}


.button {
  border: none;
  display: inline-block;
  padding: 0.75rem 2.25rem;
  border-radius: 30px;
  background-color: white;
  color: black;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: 'Press Start 2P';
}

.button_div {
    margin: 50px;
}

.card {
  display: inline-block;
  width: auto;
  background-color: white;
  margin: 30px;
  padding: 30px;
  border-radius: 30px;
    align-items: center;
}


.card-2 {

  width: 200px;
  display: inline-flex;
  background-color: white;
    align-items: center;
  margin: 10px;
  padding: 20px;
  /*height: 200px;*/
  box-sizing: border-box;
  border-radius: 30px;
}

.container {
    width: 150px;
    border: solid;
    padding: 10px;
    border-color: black;
    border-radius: 30px;
    align-items: center;
}

p {
  font-size: 12pt;
  line-height: 3;
}


.wall_cont {
    display: inline-block;
    max-width: 80vw;
}

.row {
    display: flex;
}

.row:nth-child(odd) .brick:first-child, .row:nth-child(even) .brick:last-child{
    width: 70px;
}

.brick{
    width: 150px;
    height: 50px;
    background-color: #ffffff;
    padding: 10px;
    text-align: center;
    border: solid;
    background-color: #2C3E50;
    border-color: black;
    border-radius: 5px;
    margin: 2px;
}

.brick_em{
    width: 150px;
    height: auto;
    background-color: #ffffff;
    padding: 10px;
    text-align: center;
    border: solid;
    border-color: black;
    border-radius: 5px;
    margin: 2px;
}


.progress {
    margin:20px auto;
    padding:0;
    width: 30%;
    height:30px;
    overflow:hidden;
    background:#e5e5e5;
    border-radius:30px;
}

.bar {
    position:relative;
    float:left;
    min-width:1%;
    height:100%;
    background: #2C3E50;
    border-radius: 30px;
}

.percent {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    margin:0;
    font-size:12px;
    color:white;
    border-radius: 30px;
}

.question {
    padding: 20px 80px 20px 20px;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: solid;
    solid-color: black;
    border-radius: 30px;
}

.question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;


}

.answer {
    padding: 20px;
    line-height: 1.5rem;
}

.question.active + .answercont {
}

.wallet {
    width: 100px;
    background-color: white;

    border-radius: 30px;
}

.nft-section {
  display: flex;
  border-radius: 30px;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background-color: #f5f5f5;
}

.nft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
  max-width: 1200px;
  overflow: auto;
  overflow-y: scroll;
  padding: 20px;
  max-height: 1200px; /* Set a maximum height for the grid to limit the scrolling */

}

.nft-card {
  display: flex;
  padding-top: 20px;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.nft-card nft-card {
  width: 100%;
  height: 200px;
}

.nft-card h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 20px;
  color: #333;
}

.nft-card p {
  font-size: 14px;
  margin: 10px 20px;
  color: #666;
}

.nft-card a {
  display: block;
  margin: 20px;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
}

.nft-card a:hover {
  background-color: #3e8e41;
}


/* Mobile styles */
@media screen and (max-width: 600px) {

  /* Header styles */
  .header {
    height: auto;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .logo img {
    height: 40px;
    margin-bottom: 10px;
  }

  /*.menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #2C3E50;
    padding: 10px;
  }

  .menu a {
    display: block;
    color: white;
    text-align: center;
    padding: 10px 0;
  }

  .menu a:hover {
    background-color: #34495E;
  }

  .menu-icon {
    display: block;
  }*/

  /* Main styles */
  .main {
    padding: 20px;
  }

  h1 {
    font-size: 30pt;
  }

  h3 {
    font-size: 20pt;
  }
  .wrapper {
    padding-top: 20px;
  }
  .nft-section {
    padding: 30px 0;
  }

  .nft-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    max-width: 100%;
    overflow: auto;
    padding: 10px;
    overflow-y: scroll;
  }

  .nft-card {
    height: auto;
  }

  .nft-card img {
    height: auto;
    object-fit: cover;
  }

  .nft-card h4 {
    font-size: 12px;
    margin: 10px;
  }

  .nft-card p {
    font-size: 8px;
    margin: 10px;
  }

  .nft-card a {
    margin: 10px;
    padding: 8px 16px;
    font-size: 8px;
  }

  .card {
    margin: 0px;
  }
  .progress {
    width: auto;
  }
  #wall .card {
    padding: 20px;
  }
  #wall .brick {
    height: 25px;
  }


  }


.hamburger {
  display: none; /* hide the button by default in desktop mode */
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  width: 100%;
  height: 4px;
  background-color: white;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: white;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  list-style: none;
  margin-right: 0px;
  color: white;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.nav-menu.active {
    display: block;
    flex-direction: column;
    height: 400px;
    justify-content: center;
    align-items: center;
}
  .nav-menu.active ul {
    display: flex;
    list-style: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  .nav-menu.active li {
    margin: 20px 0;
    color: white;
}
  .nav-menu.active a {
    font-size: 24px;
    color: white;
    text-decoration: none;
    margin: 0;
}

/* media query for mobile devices */
@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }

  .hamburger {
    display: block; /* show the button in mobile mode */
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .nav-menu {
    display: none; /* hide the navigation menu by default in mobile mode */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2C3E50;
    z-index: 998;
    padding-top: 80px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
  }

  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-menu li {
    margin: 20px 0;
    color: white;
    text-align: center;
  }

  .nav-menu a {
    font-size: 24px;
    text-decoration: none;
    color: white;
  }

  /* toggle the navigation menu when hamburger button is clicked */
  .hamburger.active .hamburger-inner {
    transform: rotate(45deg);
    background-color: #fff;
  }

  .hamburger.active .hamburger-inner::before {
    transform: translateY(10px) rotate(90deg);
    background-color: #fff;
  }

  .hamburger.active .hamburger-inner::after {
    transform: translateY(-10px) rotate(-90deg);
    background-color: #fff;
  }

  .nav-menu.active {
    display: block;
    flex-direction: column;
    height: auto;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
  .nav-menu.active ul {
    display: flex;
    list-style: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
  .nav-menu.active li {
    color: white;
    text-align: center;
}
  .nav-menu.active a {
    font-size: 24px;
    color: white;
    text-align: center;
    text-decoration: none;
}
.menu {
    margin: 0px;
}
}
@media (max-width: 600px) {
p {
    font-size: 12px;
}
body {
    font-size: 12px;
}
}

@media (max-width: 400px) {
body {
font-size: 12px;
}
h1 {
    font-size: 40px;
}
.card {
    margin: 0;
}

#wall .card {
    padding: 10px;
    margin: 0px;
}

#wall {
    padding: 10px;
}



h3 {
    font-size: 20pt;
}

p {
    font-size: 8pt;
}

#wall .brick {
    height: 10px;
    padding: 5px;
  }

.progress {
    width: auto;
}

.percent {
    font-size: 8px;
}

.nav-menu.active {
    text-align: center;
}
.nav-menu.active a {
    font-size: 14px;
}
.question {
    padding: 10px 40px 10px 10px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: solid;
    solid-color: black;
    border-radius: 30px;
}

.question::after {
    content: "\002B";
    font-size: 1.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;


}

.answer {
    padding: 20px;
    line-height: 1.5rem;
}

.question.active + .answercont {
}

#faq .card {
    padding: 10px;

}
}
@media screen and (max-width: 560px) {

.nft-section {
    padding: 30px 0;
  }

  .nft-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 20px;
    max-width: 100%;
    overflow: auto;
    padding: 10px;
    overflow-y: scroll;
  }

  .nft-card {
    height: auto;
    width: auto;
  }

  .nft-card img {
    height: auto;
    object-fit: cover;
  }

  .nft-card h4 {
    font-size: 12px;
    margin: 10px;
  }

  .nft-card p {
    font-size: 8px;
    margin: 10px;
  }

  .nft-card a {
    margin: 10px;
    padding: 8px 16px;
    font-size: 8px;
  }
}

@media (max-width: 450px) {
.nft-section {
    padding: 30px 0;
  }

  .nft-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-gap: 20px;
    max-width: 100%;
    overflow: auto;
    padding: 10px;
    overflow-y: scroll;
  }

  .nft-card {
    height: auto;
    width: auto;
    padding: 0;
  }

  .nft-card img {
    height: auto;
    object-fit: cover;
  }

  .nft-card h4 {
    font-size: 8px;
    margin: 10px;
  }

  .nft-card p {
    font-size: 6px;
    margin: 10px;
  }

  .nft-card a {
    margin: 10px;
    padding: 8px 16px;
    font-size: 6px;
  }
  #nfts .card {
    padding: 10px;
  }

  .button {
    font-size: 8pt;
    line-height: 2;
  }
}
