* {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    font-family: 'Archivo Black';
    background-color: white;
}
@keyframes customBounce {
    30% {
        transform: scale(1.2);
    }

    40%,
    60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* .outlined {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #20DCE9;
} */

.main-text {
    color: #EFBF04;
}

.menu-icon {
    color: #79ec81;
}

.join-button {
    color: black;
    background-color: #EFBF04;
    /* border: #FE0000 1px solid; */
}

.join-button:hover {
    color: #EFBF04;
    /* border: black 1px solid; */
    background-color: black;
}

.nav-hover-underline-animation {
    display: inline-block;
    position: relative;
    color: black;
    font-size: 20px;
}

.nav-hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    /* background-color: #5E3BEE; */
    background-color: black;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.nav-hover-underline-animation:hover {
    transform: scaleX(1);
    transform-origin: bottom left;
    color: #79ec81;
}

.nav-hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.about-logos {
    animation: customBounce 1.5s infinite;
}
.w-full button:hover .svgg path {
    fill: black;
}
.social-icons {
    animation: customBounce 3.5s infinite;
    color: black;
    margin-right:20px;
}

.partner-icon {
    width: 150px;
    background-color: white;
}

.banner {
    width: 80%;
}


.js-clipboard:hover {
    background-color: #EFBF04;
    color: black;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
  }

  .promo-links {
    color: #40b948;
  }