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

body {
    background-color: #F0EEE6;
    font-family: 'Source Serif 4', Georgia, serif;
    min-height: 100vh;
    color: #2a2a2a;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    max-width: 1200px;
    width: 100%;
    flex: 1;
}

.ascii-container {
    flex-shrink: 0;
    opacity: 0.9;
}

#ascii-canvas {
    display: block;
}

.content {
    max-width: 420px;
}

h1 {
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.tagline {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.6;
}

.section {
    margin-bottom: 24px;
}

.section p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 4px;
}

.meta {
    color: #888;
    font-size: 0.85rem;
}

a {
    color: #0d9488;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0f766e;
}

footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.02em;
}

footer a {
    color: #0d9488;
    margin: 0 8px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0f766e;
}

@media (max-width: 900px) {
    .main-wrapper {
        padding: 40px 24px;
    }

    .container {
        flex-direction: column;
        gap: 50px;
    }

    .content {
        text-align: center;
    }

    h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 1.5rem;
    }

    .section p {
        font-size: 0.88rem;
    }
}
