*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    background-color: #111111;
    color: #e0e0e0;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    line-height: 1.6;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 2rem;
}

main {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding-top: 2rem;
}

.about {
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
    margin-bottom: 1rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

footer a {
    border-bottom: none;
    font-weight: bold;
    opacity: 0.8;
}

footer a:hover {
    opacity: 1;
    border-bottom: none;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888888;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #ccc;
}

a {
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px dotted #888888;
    transition: all 0.2s ease;
}

a:hover {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

.project-list {
    list-style: none;
}

.project-item {
    margin-bottom: 1rem;
}

.project-title {
    display: block;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.project-desc {
    font-size: 0.95rem;
    color: #888888;
}

@media (max-width: 768px) {
    body {
        align-items: flex-start;
    }
    main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
