@import url('https://fonts.googleapis.com/css2?family=Hepta+Slab:wght@1..900&family=Rokkitt:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://db.onlinewebfonts.com/c/23255fa3ff7a89589800cea3092f154f?family=NB+International+Regular+Webfont');
body {
  background-color: #000;
  color: rgb(255, 255, 255);
  /* font-family: 'Satoshi', 'Courier New', monospace; */
  line-height: 1.6;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-section {
  display: flex;
  justify-content: space-between;
}

.main-content{
  flex: 1;
  margin-right: 20px;
}

.main-content h2 {
  font-family: 'Switzer', sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: rgb(204, 204, 204);
  margin-bottom: 20px;
}

.main-content p {
  font-family: "NB International Regular Webfont";
  font-size: 1.8rem;
  color: rgb(180, 180, 180);
  margin-bottom: 40px;
}

.main-content ul {
  padding-left: 0;
}

.main-content ul li {
  list-style: none;
  margin-bottom: 10px;
}

.main-content ul li a {
  color: rgb(169, 94, 255);
  font-size: 2.2rem;
  font-weight: 600;
  font-family: "NB International Regular Webfont";
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-content ul li a:hover {
  color: rgb(215, 128, 255);
}
.main-image img{
  width: 450px;
}

.social-handles a {
  font-family: "NB International Regular Webfont";
  text-decoration: none;
  font-size: 1.8rem;
  color: rgb(215, 128, 255);
  transition: color 0.3s ease;
}

.social-handles a:hover {
  color: rgb(161, 103, 255);
}

.explore-section p a {
  color: rgb(195, 122, 255);
  text-decoration: none;
  font-size: 1.2rem;
  font-family: "NB International Regular Webfont";
}
.explore-section a:hover {
  color: rgb(215, 166, 252);
  text-decoration: underline;
}
.explore-section {
    color: white;
    margin-bottom: 30px;
    padding: 20px 190px 0 190px;
    border-radius: 5px;
}

.explore-section h1{
  font-family: "NB International Regular Webfont";
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.explore-section h2{
  font-family: "NB International Regular Webfont";

}
.explore-section p {
  font-family: "NB International Regular Webfont";
    font-size: 1rem;
    line-height: 1.0;
    margin-bottom: 10px; 
}

.explore-section .image img {
    width: 400px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.button {
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    border: 2px solid rgb(169, 94, 255);
    padding: 12px 24px;
    margin: 10px;
    cursor: pointer;
    font-family: "NB International Regular Webfont";
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.button:hover {
    color: rgb(169, 94, 255);
    box-shadow: 0 0 10px rgb(243, 119, 231);
}

.community-features {
   font-family: "NB International Regular Webfont";
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px; /* Added margin to separate list from previous content */
}

.community-features li::before {
    font-family: "NB International Regular Webfont";
    content: "> ";
    color: rgb(247, 159, 255);
}

@media (max-width: 768px) {
  .main-image img{
    width: 350px;
  } 
    .explore-section {
        padding: 15px;
    }
    .explore-section .image img {
        width: 100%;
        max-width: 100%;
    }
    .explore-section h1 {
        font-size: 2rem;
    }
    .explore-section p {
        font-size: 1.4rem;
        line-height: 1.6;
    }
    .button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
  .main-image img{
    width: 350px;
  } 
    .explore-section {
        padding: 10px;
    }
    .explore-section h1 {
        font-size: 1.8rem;
    }
    .explore-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
