body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    width: 80%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid #6200ea;
}

h1 {
    color: #6200ea;
    margin: 0.5rem 0;
}

p {
    color: #333;
    margin: 1rem 0;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6200ea;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.link:hover {
    background-color: #3700b3;
}
