body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

.container {
    width: 90%;
    max-width: 400px;
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.profile h1 {
    font-size: 24px;
    margin: 10px 0 5px;
}

.profile p {
    color: #777;
    margin: 0 0 20px;
}

.links {
    list-style-type: none;
    padding: 0;
}

.links li {
    margin: 10px 0;
}

.links a {
    display: block;
    padding: 10px 20px;
    border: 2px solid #7d5fff;
    border-radius: 25px;
    text-decoration: none;
    color: #7d5fff;
    font-size: 16px;
    transition: all 0.3s;
}

.links a:hover {
    background-color: #7d5fff;
    color: #ffffff;
}

.footer {
    margin-top: 20px;
    color: #777;
    font-size: 6px;
}

.footer a {
    color: #7d5fff;
    text-decoration: none;
    font-size: 6px;
}

@media (max-width: 600px) {
    .container {
        width: 100%;
        padding: 20px 10px;
    }

    .profile img {
        width: 80px;
        height: 80px;
    }

    .profile h1 {
        font-size: 20px;
    }

    .links a {
        font-size: 14px;
        padding: 8px 16px;
    }
}
