html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "JetBrains Mono", monospace;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.4;
    padding: 1.5rem;
    height: 100vh;
    display: flex;
    align-items: center;
}

main {
    max-width: 550px;
    width: 100%;
    height: fit-content;
}

h1 {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.accent {
    color: #ffffff;
    font-weight: 600;
}

.role {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #d0d0d0;
}

.stack p {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #c0c0c0;
}

.experience p {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    padding: 0.3rem 0;
    color: #b0b0b0;
}

.highlight {
    color: #ffffff;
    font-weight: 600;
}

.divider {
    font-size: 1.8rem;
    color: #404040;
    margin: 1rem 0;
    letter-spacing: 0.3em;
}

.links p {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: #a0a0a0;
}

a {
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    font-weight: 500;
}

a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    h1 {
        font-size: 2.3rem;
    }
    .role {
        font-size: 1.1rem;
    }
    main {
        max-width: 90vw;
    }
}
