body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
    color: white;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container{
    background: linear-gradient(0deg, rgba(34,193,195,1) 0%, rgba(198,45,253,1) 100%);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 300px;
    max-width: 80%;
}
.profile{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px #db8cf7;
}
.link{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: radial-gradient(circle, rgba(90,241,222,1) 0%, rgba(195,83,236,1) 100%);
    padding: 5px 10px;
    border-radius: 10px;
    margin: 20px 0;
    text-decoration: none;
    p{
        color:white;
        font-weight: 600;
    }
}