/* Reset spacing */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page base */
body {
    font-family: Garamond, sans-serif;
    background-color: #1B1B1B;
    color: #F5F5F5;
    line-height: 1.6;
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

/* Header */
header {
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.subtitle {
    color: #B7B5E4;
    margin-top: 8px;
}

/* Section spacing */
section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #999;
}

/* Projects */
.project {
    margin-bottom: 30px;
}

.project h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.project p {
    color: #B7B5E4;
}

/* Contact */
.contact p {
    font-size: 1rem;
}
a {
    color: #B7B5E4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}