:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color: rgb(0, 0, 0);
  background-color: rgb(45, 44, 44);

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

.bouncing-blob {
  width: 32vw;
  aspect-ratio: 1;
  border-radius: 50%;
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transform-origin: left top;
}

.bouncing-blob--1 {
  background: #030303;
}

.bouncing-blob--2 {
  background: #434343;
  z-index: 2;
  width: 15vw;
}

.bouncing-blob--3 {
  background: #666666;
}

.bouncing-blob--4 {
  background: #000000;
}

.bouncing-blobs-container {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bouncing-blobs-glass {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(140px);
  -webkit-backdrop-filter: blur(140px);
  pointer-events: none;
}

.bouncing-blobs {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero h2 {
  font-size: 70px;
  max-width: 800px;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #b7b7b7;
}

.hero h5 {
  font-size: 24px;
  max-width: 800px;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #ffffff;
}  
  
.hero h6 {
  font-size: 11px;
  max-width: 800px;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #ffffff;
  
}

.hero p {
  font-size: 24px;
  max-width: 500px;
  text-align: center;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .bouncing-blobs-glass {
    backdrop-filter: blur(120px);
    -webkit-backdrop-filter: blur(120px);
  }
}

@media (max-width: 500px) {
  .bouncing-blob {
    width: 60vw;
  }
  .bouncing-blob--white {
    width: 30vw;
  }
  .bouncing-blobs-glass {
    backdrop-filter: blur(90px);
    -webkit-backdrop-filter: blur(90px);
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
    padding: 0 20px;
  }
}

.tutorial-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-size: 20px;
  text-decoration: none;
  font-weight: 600;
  gap: 0 5px;
  border: 2px solid;
  border-radius: 5px;
  padding: 4px 10px;
}

.tutorial-link svg {
  width: 30px;
}

  
  /* Media query for mobile devices */
  @media (max-width: 767px) {
    a {
      width: 60vw; /* Set width to 60% of viewport width on mobile */
      margin-bottom: 10px; /* Add margin between buttons */
    }
  }
  
  /* Media query for desktop devices */
  @media (min-width: 768px) {
    a {
      width: 300px; /* Set width to 300px on desktop */
      margin-right: 10px; /* Add margin between buttons */
    }
  
    a:last-child {
      margin-right: 0; /* Remove right margin from last button */
    }
  }
  
  
  

@media(max-width: 30%) {
  .tutorial-link a {
    font-size: 14px;
    padding: 2px 4px;
  }
  .tutorial-link svg {
    width: 15px;
  }
}

  .button-container {
      display: flex;
      justify-content: center;
      gap: 10px; /* Adjust the gap as needed */
    }
  
  /* Styles for your regular links */
  a {
      color: #2252b1; /* light neon green */
      font-size: 16px;
      text-decoration: none;
      font-weight: 600;
    }
  
  /* Styles for the custom button */
  .custom-button {
    display: inline-block; /* Change display to inline-block */
    color: #2c2c2c; /* White text */
    border: none; /* No border */
    border-radius: 25px;
    padding: 15px; /* Adjust padding */
    background-color: #d5d5d5; /* Dark silver */
    box-shadow: 0 0 0 0 #c0c0c0; /* Silver growing fade shadow */
    transition: box-shadow 0.3s; /* Transition effect for the shadow */
  }
  
  /* Hover effect for the custom button */
  .custom-button:hover {
    background-color: #202020; /* Dark green */
    color: #ffffff; /* White text */
    box-shadow: 0 0 10px 5px #919191; /* Neon green shadow on hover */
  }

  .wallet-type {
    width: 80%;
    border-radius: 25px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Set width to 100% */
    max-width: 250px; /* Limit the maximum width */
    margin: 0 auto; /* Center the container horizontally */
  }
  
  .social-icons a {
    margin: 0 5px; /* Adjust spacing between icons */
  }
  
  .social-icons img {
    width: 17px; /* Set the same size for all icons */
    height: 17px;
  }
  
