.container{
    background-color: rgba(255, 255, 255, 0.329);
    color: white;
    z-index: 1;
    width: 200px;
    border-radius: 20px;
    
    
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

.container2{
    background-color: rgba(255, 255, 255, 0.329);
    color: white;
    padding: 10px;
    margin-top: 5px;
    z-index: 1;
    width: min-content;
    border-radius: 20px;
    
    
    
    position: absolute;
    display: flex;
    
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

a{
    text-decoration: none;
    color: wheat;
}


@keyframes colorChange {
    0% {
      background-position: 100% 0;
    }
    100% {
      background-position: -100% 0;
    }
  }

  .text-effect {
    background: linear-gradient(90deg, #ff00bf, #3304ee,#4093ff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
    display: inline-block;
    border-radius: 5px;
    animation: colorChange 5s linear infinite;
    font-weight: bold;

  }


  .waviy {
    position: relative;
  }
  .waviy span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    animation: flip 2s infinite;
    animation-delay: calc(.2s * var(--i))
  }
  @keyframes flip {
    0%,80% {
      transform: rotateY(360deg) 
    }
  }