body {
    margin: 0;
    height: 100vh;
    background-color: #000;
}

.background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: url('metamask_2.png') no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    
    width: 650px;
    height: 650px;
    margin: auto;
    margin-top: 2rem;
        /* animation: zoom 5s infinite; */
}

.social-icons {
    display: flex;
    position: absolute;
    top: 0%;
    right: 5%;
    gap: 20px;
    margin-top: 20px;
}

.social-icons img {
    width: 50px;
    height: 50px;
}

.ca {
    text-align: center;
    position: absolute;
    bottom: 5%;
    width: 100%;
}

h3 {
    display: block;
    color: #ec7410;
    font-size: 1.5rem;


}

@keyframes zoom {

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

    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .background {
        
        width: 350px;
        height: 40%;
        margin-top: 4rem;
        /* animation: zoom 5s infinite; */
    }

   /*  .social-icons {
        display: block;
        position: absolute;
        top: 52%;
        right: 40%;
        gap: 10px;
        z-index: 1000;
    } */

    .social-icons img {
        width: 40px;
        height: 40px;
    }

    .ca {
        position: absolute;
        bottom: 30%;
        text-align: center;

    }

    h3 {
        font-size: 0.9rem;
        text-align: center;

    }
}