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

body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    background: linear-gradient(to bottom, #ffead8, #ffe6e1);
    color: #000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: start;
}

header h1 {
    font-size: 5rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    white-space: nowrap;
}

main {
    font-size: 1.2rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

a {
    color: inherit;
}

footer {
    position: fixed;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    header h1 {
        font-size: 3rem;
        white-space: normal;
    }

    footer {
        position: static;
        width: 100%;
        margin-top: 3rem;
    }
}
