* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "ubuntu", sans-serif;
    text-decoration: none;
}

body {
    height: 100vh;
    background: url(/img/bg.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card {
    width: 300px;
    height: auto;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    background: #2c3a47;
    padding: 60px 40px;
}


.pic {
    display: inline-block;
    padding: 8px;
    background: linear-gradient(130deg, #EC268F, #FDD1A1, #F7ADAF, #EC268F);
    margin: auto;
    border-radius: 50%;
    animation: animated-gradient 2s linear infinite;
    background-size: 200% 200%;
}

@keyframes animated-gradient {
    25% {
        background-position: left bottom;

    }

    50% {
        background-position: right bottom;

    }

    75% {
        background-position: right top;

    }

    100% {
        background-position: left top;

    }
}

.pic img {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;

}

.name {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin: 10px 0;
}

.desc {
    font-size: 18px;
    color: #FFF6A5;

}

.sm {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.sm a {
    color: #f2f2f2;
    width: 50px;
    font-size: 40px;
    transition: .3s linear;

}

.sm a:hover {
    color: #FFF6A5;
}

.contact-btn {
    display: inline-block;
    padding: 12px 50px;
    color: #0794E5;
    border: 2px solid #0794E5;
    border-radius: 8px;
    margin-top: 17px;
    transition: .3s linear;
}

.contact-btn:hover {
    background: #0794E5;
    color: #f2f2f2;
}

.card-footer {
    background: black;
    padding: 7px 10px;
}

.card-footer a {
    color: black;
}

.number {
    display: flex;
    align-items: center;
}

.item {
    flex: 1;
    text-transform: unset;
    font-size: 18px;
    color: #bbb;


}

.item samp {
    display: block;
    color: black;
    font-size: 30px;
}

.border {
    width: 1px;
    height: 30px;
    background: #bbb;
}