* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    color: #3498db;
}

p {
    font-size: 1rem;
    color: #777;
}

.input-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

#textInput {
    width: 80%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#generateBtn {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#generateBtn:hover {
    background-color: #2980b9;
}

.loading {
    display: none;
    text-align: center;
    font-size: 1.2rem;
    color: #3498db;
}

.image-result {
    display: none;
    text-align: center;
    margin-top: 20px;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 30px;
}
