.card {
    width: 50%;
    height: 254px;
    background-image: linear-gradient(163deg, #00ff75 0%, #3700ff 100%);
    border-radius: 20px;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card2 {
    width: 100%;
    height: 244px;
    background-color: #1a1a1a;
    border-radius: ;
    transition: all 0.2s;
    border-radius: 20px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logoimg {
    width: 30%;
}

.button {
  cursor: pointer;
  width: 50px;
  height: 40px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(120deg, #833ab4, #fd1d1d, #fcb045);
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: 0.1s;
}
.button svg {
  color: white;
  width: 20px;
  height: 30px;
  z-index: 9;
}

.button:nth-child(3) {
  background: linear-gradient(120deg, #02ff2c, #008a12);
}

.button:nth-child(4) {
  background: rgb(69, 187, 255);
}

.button:nth-child(5) {
  background: rgb(23, 88, 4);
}

.button:nth-child(6) {
  background: black;
}

.button:active {
  transform: scale(0.85);
}

.button::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  background-color: #212121;
  border-radius: 50px;
  z-index: -1;
  border: 0px solid rgba(255, 255, 255, 0.411);
  transition: 0.4s;
}

.button:hover::before {
  width: 0px;
  height: 0px;
}

.social{
    display: flex;
    justify-content: center;
    margin-top: -175px;
}

:root {
  color-scheme: light;
}




@media screen and (max-width: 768px) {
    .card {
        width: 300px;
        height: 500px;
        background-image: linear-gradient(163deg, #00ff75 0%, #3700ff 100%);
        border-radius: 20px;
        transition: all 0.3s;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 180px;

    }

    .card2 {
        width: 290px;
        height: 490px;
        background-color: #1a1a1a;
        border-radius: ;
        transition: all 0.2s;
        border-radius: 20px;
    }

    /* .btn,button{
        margin-top: 50px;
        margin-left: 15px;
        width: 90%;
    } */

    .logoimg {
        width: 50%;
    }

    .logo {
        margin-top: 30px;
        
    }


}