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(180deg, rgba(2,0,36,1) 0%, rgba(156,23,255,1) 36%, rgba(0,212,255,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 solid #1c8af1;
}
.link{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #c3c3c3;
    padding: 5px 10px;
    border-radius: 10px;
    margin: 20px 0;
    text-decoration: none;
}
p{
    color: white;
    font-weight: 600;
}


