/* styles.css */
.poppins-semibold {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
  }

body {
     font-family: "Poppins", serif;
    margin: 0;
    padding: 0;
    color: #f9f9f9;
    background-color: #333;
    text-align: center;
    background-image: url(logo2.png);
    background-size: contain;
  }
  
  header.header {
    text-align: center;
    background-color: #4caf50;
    color: white;
    padding: 20px 10px;
  }
  
  header .logo {
    width: 150px;
    height: auto;
    border-radius: 10px;
  }
  header .logo2 {
    width: auto;
    height: 150px;
    border-radius: 10px;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin: 10px 0;
  }
  
  header p {
    margin-top: 5px;
    font-size: 1.2rem;
  }
  
  main {
    padding: 20px;
  }
  
  h2 {
    color: #4caf50;
    margin-bottom: 10px;
  }
  
  p {
    line-height: 1.6;
  }
  
  ul {
    list-style: disc inside;
    margin: 15px 0;
    padding-left: 0;
  }
  
  .introduction, .how-we-help, .about-memecoins, .mission {
    margin-bottom: 40px;
  }
  
  .introduction img, 
  .how-we-help img, 
  .about-memecoins img, 
  .mission img {
    width: auto;
    max-height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .mission .buttons {
    margin-top: 20px;
  }
  
  .mission img {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .mission button {
    border: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 10px;
    background-color: #4caf50;
    color: #f9f9f9;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
  }
  
  .mission button:hover {
    background-color: #45a049;
  }
  .roadmap {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
  }

  .roadmap img {
    width: auto;
    max-height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .roadmap h2 {
    color: #4caf50;
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .roadmap-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .roadmap-step {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #45a049;
    width: 20%;
    height: 40px;
    border-radius: 10px;
    font-weight: bold;
  }
  
  .roadmap {
    background-color: #333;
    border-radius: 20px;
    margin-bottom: 50px;
    border: 3px solid #f9f9f9;
    background-image: url(back.png);
    background-size: contain;
  }
  .roadmap-step p {
    font-size: 1rem;
    text-align: left;
    margin: 0;
    color: #333;
  }
  
  .roadmap-step strong {
    color: #4caf50;
  }

  
  .our-work {
    text-align: center;
    margin: 40px 0;
  }
  
  .our-work h2 {
    color: #4caf50;
    margin-bottom: 20px;
  }
  
  .our-work .video {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  .our-work .images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
  }
  
  .our-work img {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .our-work .buttons {
    margin-top: 20px;
  }
  
  .our-work button {
    border: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 10px;
    background-color: #4caf50;
    color: #f9f9f9;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
  }
  
  .our-work button:hover {
    background-color: #45a049;
  }
  
  footer.footer {
    text-align: center;
    background-color: #000;
    color: white;
    padding: 10px 0;
    margin-top: -30px;
  }
  
  footer p {
    margin: 0;
    font-size: 0.9rem;
  }
  