* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#wrapper {
    background-color: #5f7b90;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

}

.circle1 {
    position: fixed;
    top: 5%;
    left: 30%;
    width: 13em;
    height: 13em;
    border-radius: 50%;
    box-shadow: 0 0 50px #d84869;
    background: linear-gradient(-25deg, #d84869, #f46641);
    animation: circle1Animate 15s infinite;
}

@keyframes circle1Animate {
    50% {
        left: 33%;
        top: 4%;
        scale: 1.1;
    }
}

.circle2 {
    position: absolute;
    bottom: 5%;
    right: 30%;
    width: 19em;
    height: 19em;
    border-radius: 50%;
    box-shadow: 0 0 50px #5648d8;
    background: linear-gradient(-25deg, #5648d8, #8641f4);
    animation: circle2Animate 8s infinite;
}

@keyframes circle2Animate {
    50% {
        bottom: 6%;
        right: 31%;
    }
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    height: 500px;
    border: 2px solid #ffffff30;
    align-items: center;
    justify-content: space-evenly;
    background: #ffffff1a;
    backdrop-filter: blur(15px);
    border-radius: 15px;
    color: #ffffff;
    padding: 20px 50px;
}

.card-wrapper img {
    border: 2px solid #ffffff30;
    border-radius: 50%;
}

.card-wrapper h2 {
    font-size: 2rem;
    text-align: center;
}

.card-wrapper p {
    font-size: 1.2rem;
    text-align: center;
    color: #ffffff95;
}

.btn-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

#share-btn,
#follow-btn {
    font-size: 1rem;
    padding: 9px 12px;
    background: #ffffff00;
    border: 2px solid #ffffffb9;
    text-transform: capitalize;
    border-radius: 4px;
    color: #ffffffb9;
    cursor: pointer;
    transition: all;
    transition-duration: 0.3s;
}

#follow-btn {
    width: 170px;
}

#share-btn i {
    padding-right: 4px;
}

#share-btn:hover,
#follow-btn:hover {
    background: #ffffffb9;
    color: #131313;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    border: 2px solid #ffffff59;
    width: 500px;
    scale: 0;
    background: #00000088;
    backdrop-filter: blur(10px);
    color: white;
    z-index: 10;
    padding: 20px 25px;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.modal h2 {
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ffffff88;
}

.icon-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.icon {
    /* border: 1px solid #ffffff88; */
    padding: 30px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    margin: 10px 0px;
    gap: 10px;
    justify-content: center;
    transition: all 0.5s;
    margin-bottom: 25px;
    text-decoration: none;
}

.icon i {
    font-size: 47px;
}

#facebook {
    color: #1771e6;
    border: 1px solid #1771e6;
}

#facebook:hover {
    background-color: #1771e6;
    color: #fff;
}

#twitter {
    color: #1c99e6;
    border: 1px solid #1c99e6;
}

#twitter:hover {
    background-color: #1c99e6;
    color: #fff;
}

#instagram {
    color: #cb2770;
    border: 1px solid #cb2770;
}

#instagram:hover {
    background-color: #cb2770;
    color: #fff;
}

#whatsapp {
    color: #2fe664;
    border: 1px solid #2fe664;
}

#whatsapp:hover {
    background-color: #2fe664;
    color: #fff;
}

#telegram {
    color: #0081c2;
    border: 1px solid #0081c2;
}

#telegram:hover {
    background-color: #0081c2;
    color: #fff;
}

.overlay {
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff40;
    z-index: -1;
    transition: all 0.5s;
}

@media screen and (max-width:550px) {
    .btn-div {
        flex-direction: column;
    }

    .modal{
        width: 95%;
    }
}