body {
    background-color: #343941;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: sans-serif;
}

.card {
    background:rgb(36, 35, 35);
    padding:30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,1);
    width: 300px;
}

.card img {
    width: 120px;
    border-radius: 50%;
    border: 5px solid rgba(78, 9, 9, 0.452);
}

.links a {
    display: block;
    background: red;
    color: black;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.2s;
}

.links a:hover {
    transform: scale(1.05);
}