/* Mobile-first styles */

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

body {
    font-family: 'Garamond', 'Georgia', serif;
    background-color: #FAF8F3;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #2C2C2C;
}

.container {
    text-align: center;
    padding: 1.5rem;
    max-width: 500px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #1A1A1A;
}

.icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 2.5rem;
    opacity: 0.85;
    display: block;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.75;
    line-height: 1.8;
    font-weight: 300;
}

.emphasis {
    font-size: 0.875rem;
    opacity: 0.6;
    font-style: italic;
    margin-top: 2rem;
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .container {
        padding: 2rem;
    }

    h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .icon {
        width: 150px;
        height: 150px;
        margin-bottom: 3rem;
    }

    p {
        font-size: 1.125rem;
    }

    .emphasis {
        font-size: 1rem;
    }
}

/* Desktop screens */
@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    .icon {
        width: 180px;
        height: 180px;
    }
}
