@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
    --primary-color: #663399; /* fallback purple */
    --link-color: #0077cc;
    --accent-color: #f0f0f0;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

header {
    background: linear-gradient(135deg, #7F00FF, #E100FF);
    color: white;
    display: flex;
    align-items: center;
    padding: 20px;
}

.header-content {
    display: flex;
    align-items: center;
}

.profile-image {
    height: 150px;
    width: auto;
    border-radius: 50%;
    margin-right: 20px; /* Space between image and text */
}

.text-social h1 {
    margin-bottom: 5px; /* Small margin to space out the name from social links */
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links img {
    width: 24px;
    height: 24px;
    margin-right: 10px; /* Space between icons */
    transition: transform 0.2s;
}

.social-links img:hover {
    transform: scale(1.1);
}

.main-content {
    display: flex;
    margin: 20px;
}

.links {
    flex: 0 0 200px;
    background: var(--accent-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.links ul {
    list-style-type: none;
    padding: 0;
}

.links li {
    margin-bottom: 10px;
}

.links a {
    display: block;
    color: var(--link-color);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.links a:hover {
    background-color: var(--link-color);
    color: #fff;
}

.story {
    flex: 1; /* Takes up remaining space */
    padding: 20px;
}

.story h2 {
    color: #333;
}

.story p {
    line-height: 1.6;
}
