* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #282828;
}

/* Hamburger menu styles */
.hamburger-menu {
    position: fixed;
    top: 0;
    left: -100%; /* Initially hidden */
    width: 250px;
    height: 100%;
    background-color: #bcd030;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hamburger button styles */
#hamburger-button {
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    z-index: 3;
}

/* Close button styles */
#close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
}

/* Hamburger bars styles */
.bar {
    width: 25px;
    height: 3px;
    background-color: #bcd030;
    margin: 4px 0;
    transition: 0.4s;
}


#card {
  background-color: #282828;
  max-width: 90%;
  height: auto;
  margin: 50px auto;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#share-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
#share-btn img {
  width: 30px;
  height: 30px;
}


/* Add this CSS for section styling */
 #section1 {
    text-align: center;
    margin-top: 50px;
    background-color: #282828;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  #section1 h1 {
    font-size: 28px;
    color: #fff;
  }

  #section1 p {
    font-size: 18px;
    color: #fff;
    margin-top: 20px;
  }

  #section1 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
  }

  #section1 a {
    display: inline-block;
    margin-top: 30px;
    font-size: 20px;
    color: white;
    background-color: #bcd030;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s;
  }

  #section1 a:hover {
    background-color: #bcd030;
  }

  /* Additional CSS for the button container to center vertically */
  #section1 .button-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
  }

  /* Additional CSS for the button */
  #section1 button {
    font-size: 18px;
    background-color: #bcd030;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 10px 20px;
  }

  #section1 button:hover {
    background-color: #bcd030;
  }



#logo {
  margin-bottom: 20px;
}

#logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

#card h1 {
  margin-top: 0;
  font-size: 24px;
  color: #fff;
  text-align: center;
}

#card p {
  margin-top: 0px;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  vertical-align: middle;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.link {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.link:hover {
  text-decoration: none;
  background-color: #acd000;
}

.pix-wrapper {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pix-wrapper p {
  margin-right: 10px;
  font-size: 16px;
  color: #666;
}

.pix {
  display: inline-block;
  width: 50px;
  height: 50px;
}

.pix img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 150px;
  height: 50px;
  object-fit: contain;
}

.website {
  margin-top: 20px;
}