:root {
--bg: #f4f4f4;
--text: #333;
--primary: #007acc;
--secondary: #555;
}
[data-theme="dark"] {
--bg: #121212;
--text: #e0e0e0;
--primary: #90caf9;
--secondary: #aaa;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--bg);
color: var(--text);
font-family: Arial, sans-serif;
line-height: 1.6;
transition: background 0.3s, color 0.3s;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
background: var(--bg);
}
header .logo {
font-size: 1.5rem;
font-weight: bold;
color: var(--primary);
text-decoration: none;
}
header nav a {
margin-left: 1rem;
text-decoration: none;
color: var(--secondary);
font-weight: 500;
}
main {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 3rem 1rem;
}
.profile-pic {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1.5rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
p.lead {
font-size: 1.2rem;
color: var(--secondary);
margin-bottom: 2rem;
}
button#toggle-theme {
padding: 0.5rem 1rem;
border: none;
cursor: pointer;
background: var(--primary);
color: #fff;
border-radius: 4px;
font-size: 1rem;
margin-bottom: 2rem;
}
section#about {
max-width: 600px;
margin-top: 2rem;
text-align: left;
}
section#about h2 {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--primary);
}
section#about p {
margin-bottom: 0.75rem;
}
footer {
text-align: center;
padding: 2rem 1rem;
font-size: 0.9rem;
color: var(--secondary);
}
footer a {
color: var(--primary);
text-decoration: none;
font-weight: 500;
}

