body {
    background: linear-gradient(135deg, #74ebd5, #ACB6E5);
    font-family: 'Helvetica Neue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

h1 {
    margin: 10px 0;
    font-size: 26px;
    color: #333;
}

.description {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.links a {
    display: block;
    background: #4A90E2;
    color: white;
    text-decoration: none;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

.links a:hover {
    background: #357ABD;
}

