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

::selection {
    background: #2a1f14;
    color: #f4efe6;
}

html, body {
    height: 100%;
}

body {
    background: #e8e0d4;
    color: #2a1f14;
    font-family: 'Source Sans 3', 'Source Sans Pro', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 3rem;
}

main {
    max-width: 480px;
    width: 100%;
    text-align: center;
    animation: appear 1.8s ease forwards;
    opacity: 0;
}

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

h1 {
    font-family: 'Special Elite', monospace;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-bottom: 1.4rem;
}

.quote {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #5a4535;
    font-style: italic;
}

.attribution {
    color: #8a7060;
    font-style: normal;
}

@media (max-width: 480px) {
    body {
        padding: 2.5rem;
        align-items: flex-start;
        padding-top: 5rem;
    }
}
