@font-face {
    font-family: 'DepartureMono';
    src: url('assets/DepartureMono-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'DepartureMono', monospace;
    background-color: #ffffff;
    color: #000000;
    padding: 60px;

    font-size: 16px;
    line-height: 1.5;
}

.container {
    text-align: left;
    max-width: 600px;
}

.icon {
    display: block;
    margin-left: -20px;
}

.text-content {
    letter-spacing: 0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

.text-content h1 {
    margin-bottom: 20px;
}

.text-content p {
    margin: 0;
}

/* Text page styles */
h1 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 24px;
    line-height: 1.2;
}

h2 {
    font-size: 18px;
    font-weight: normal;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.3;
}

p {
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    margin-bottom: 16px;
    padding-left: 40px;
}

li {
    margin-bottom: 12px;
    list-style-type: circle
}

li:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: normal;
    text-decoration: underline;
}

/* Override link styles for text pages */
p a, li a {
    text-decoration: underline;
}

a:hover {
    opacity: 0.7;
}

@media (max-width: 480px) {
    body {
        padding: 30px;
        font-size: 14px;
    }
    
    h1 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .text-content h1 {
        margin-bottom: 10px;
    }
    
    h2 {
        font-size: 16px;
        margin-top: 24px;
        margin-bottom: 12px;
    }
    
    ul {
        padding-left: 24px;
    }
    
    li {
        margin-bottom: 8px;
    }
} 