body {
    font-family: Arial, sans-serif;
    background-color: #b60000;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.avatar img {
    border-radius: 50%;
    margin: 0 auto 20px;
}

.name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    text-decoration: none;
    color: #252525;
    margin: 0 10px;
    font-size: 3rem;
}

.social-media a:hover {
    text-decoration: underline;
}