@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(#eb7d80, #000);

}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 650px;
    width: 350px;
    background-color: #fff;
    border-radius: 24px;
    padding: 15px;
    box-shadow: 1px 1px 30px #000;
    border: solid 3px #eb7d80;
  
}

.profile-card .logo img {
    width: 250px;
    height: 160px;
    animation: x 2s ease 1;
}


@keyframes x {
    0% {
        opacity: 0;
        translate: 0 -85px;
    }

    100% {
        opacity: 1;
        translate: 0 0;
    }
}

/* .profile-card .text-data {
    display: flex;
    flex-direction: column;
    align-items: center;
} */

/* .text-data .name {
    letter-spacing: 1px;
    font-size: 22px;
    font-weight: 600;
    color: #000;
} */


.profile-card .line {
    margin: auto;
    background: #eb7d80;
    width: 200px;
    height: 1px;
    box-shadow: 1px 1px 8px #eb7d80;
    animation: y 2s ease 1;
}

@keyframes y {
    0% {
        opacity: 0;
        translate: -170px 0;
    }
}

.profile-card .text-data2 .name {
    margin-top: 10px;
    color: #000;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    font-size: 21px;
    font-weight: 600;
    animation: k 1.5s ease 1;
}

@keyframes k {
    0% {
        opacity: 0;
        translate: 0 150px;
    }
}

.icons {
    margin: 15px 0 0 0px;
    background-color: #fff;
    box-shadow: 1px 1px 15px #000;
    height: 200px;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 295px;
    gap: 25px;
    border-radius: 10px;
    border: solid 3px #faddde;
    animation: k 1.5s ease 1;
}

p {
    display: flex;
    text-transform: capitalize;
    color: #eb7d80;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
}

a {
    color: #eb7d80;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}



.profile-card .icons .item1 {
    margin-right: 25px;
    margin-left: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
}

.icons .item1 a i {
    display: flex;
    justify-content: center;
}

.profile-card .icons .item2 {
    margin-right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}



.profile-card .icons .item3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
  
}

.profile-card .icons .item4 {
    margin-right: 45px;
    margin-left: 49px;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}




.profile-card .text .find {
    color: #000;
    margin-top: 10px;
    padding: 10px;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 600;
    animation: k 1.5s ease 1;
}



.profile-card .social .facebook,
.insta {
    font-size: 30px;
    border-radius: 15px;
    cursor: pointer;
    border: solid 2px #eb7d80;
}

.social {
    margin-top: 10px;
    display: flex;
    width: 300px;
    gap: 40px;
    justify-content: center;
    align-items: center;
    color: #fff;
    animation: k 1.5s ease 1;
}

.ve {
    display: flex;
    padding: 5px;
}


.share-btn{
    position: relative;
    border: none;
    background-color: #fff;
    color: #f58220;
    border-radius: 50%;
     width: 30px;
    height: 30px; 
    font-size: 25px;
    padding-top: 2.5px;
    padding-right: 3px;
    cursor: pointer;
    z-index: 2;
   display: flex;
   justify-content: center;
   margin: auto;
   animation: k 1.5s ease 1;
}

.share-btn a{
    color: #eb7d80;
}

.share-options{
    position: absolute;
    bottom: 20%;
    left: 53%;
    width: 65px;
    height: 70px;
    transform-origin: bottom right;
    transform: scale(0);
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: rgba(15, 15, 15, 0.5);
    color: #fff;
    padding: 10px;
    font-family: 'roboto';
    transition: .5s;
    transition-delay: .5s;;
}



.share-options.active{
    transform: scale(1);
    transition-delay: 0s;
}


.share-options.active ,
.share-options.active .social-media,
.share-options.active {
    opacity: 1;
    transition: .5s;
    transition-delay: .5s;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#closePopupButton{       
    font-size:17px;
    margin-top:10px;
    }

    #installPopup {
        display: none;
        padding: 15px  30px;
        width: 80%;
        max-width: 400px;
        border: 1px solid black;
        background: #f9f9f9;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1000;
        text-align: center;
        
    }

    .share{
        display: flex; 
        justify-content: center;
       /*margin-right: 10px;*/
       gap: 30px;
       margin-top: 10px;
      
    }
    
    

    /* Install button styling */
    #multiActionButton {
        display:inline;
        padding: 0px 15px;
        font-size: 25px;
        color:#eb7d80 ;
        background-color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 14px;
        animation: k 1.5s ease 1;
    }


.line1{
    margin: auto;
    background: #eb7d80;
    width: 210px;
    height: 1px;
    margin-top: 20px;
    box-shadow: 1px 1px 8px #eb7d80;
    animation: k 1.5s ease 1;

}


.profile-card .footer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    font-size: 13px;
    color: #00a0df;
    letter-spacing: 1px;
    font-weight: 600;
    animation: k 1.5s ease 1;

}

.profile-card .footer a {
    color: #000;
    margin-left: 3px;
}


