body {
    background: url('https://www.usgs.gov/media/images/bald-eagle-and-american-flag') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
}

.flag-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.american-flag {
    width: 120px;
    height: auto;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border-radius: 6px;
}

.container {
    max-width: 400px;
    margin: 60px auto;
    padding: 2rem;
    background: rgba(255,255,255,0.92);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    text-align: center;
}

h1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #2a4d69;
}

form {
    margin-bottom: 1.5rem;
}

input[type="text"] {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 70%;
    margin-right: 0.5rem;
    box-sizing: border-box;
}

button {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    background: #2a4d69;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #1e3550;
}

#result {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    min-height: 2.5em;
}

.murica-text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #b22234;
    text-shadow: 2px 2px 0 #fff, 4px 4px 0 #3c3b6e;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
} 