body{
    font-family: Arial, Helvetica, sans-serif;
    background: rgb(69,80,59);
    background: linear-gradient(180deg, rgba(69,80,59,1) 0%, rgba(116,117,114,1) 30%, rgba(176,152,164,1) 100%);
    color: #E5EBEA;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container{
    padding: 20px;
    text-align: center;
    width: 300px;
    max-width: 80%;
}

.profile{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #45503B;
}

.link{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #747572;
    padding: 5px 10px;
    border-radius: 10px;
    margin: 20px 0;
    text-decoration:none;
    p{
        color: #E5EBEA;
        font-weight: 600;
    }
}