@font-face {
    font-family: 'Diatype Semi Mono';
    src: url(../fonts/ABCDiatypeSemi-Mono-Regular.otf);
}

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

body {
    font-family: 'Diatype Semi Mono', monospace;
    font-size: 1rem;
    line-height: 1.25;
    color: #000;
    background: #fff;
    padding: 60px 40px;
    max-width: 720px;
    margin: 0 auto;
}

::selection {
    background: #000;
    color: #fff;
}

a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.5;
}

.header {
    margin-bottom: 80px;
}

.name {
    font-weight: 500;
    margin-bottom: 8px;
}

.tagline {
    margin-bottom: 20px;
    opacity: 0.7;
}

.location {
    opacity: 0.5;
    font-size: 14px;
}

.header-contacts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 14px;
}

.footer {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
    opacity: 0.5;
    font-size: 13px;
    text-align: center;
}

.section {
    margin-bottom: 60px;
}

.section-title {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.5;
}

.entry {
    margin-bottom: 16px;
}

.entry-title {
    font-weight: 400;
}

.entry-meta {
    opacity: 0.5;
    font-size: 14px;
    margin-top: 2px;
}

.stack {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0.7;
}

.stack-item {
    font-size: 14px;
}

.contact-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    body {
        padding: 40px 24px;
        font-size: 14px;
    }

    .header {
        margin-bottom: 60px;
    }

    .section {
        margin-bottom: 50px;
    }
}
