body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(20, 50, 95);
    color: white;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container{
    background: linear-gradient(0deg, rgb(126, 0, 0) 35%, rgb(255, 1, 1) 80%, rgb(68, 30, 30) 100%);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 300px;
    max-width: 80%;
}
.profile{
    width: 230px;
    height: 170px;
    border-radius: 12px;
    object-fit: cover;
    border: 6px solid rgb(133, 2, 2);
}
.link{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: rgb(204, 21, 21);
    padding: 5px 10px;
    border-radius: 10px;
    margin: 20px 0;
    text-decoration: none;
}