/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

h1 {
    color: #ffffff;
}

#flag-container {
    margin: 20px 0;
}

#flag {
    width: 100%;
    max-width: 400px;
    border: 1px solid #333;
    border-radius: 5px;
}

input {
    padding: 10px;
    font-size: 16px;
    margin-top: 10px;
    width: 80%;
    max-width: 300px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #333;
    color: #e0e0e0;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    background-color: #6200ea;
    border: none;
    border-radius: 5px;
    color: #e0e0e0;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

button i {
    margin-right: 8px;
}

button:hover {
    background-color: #3700b3;
}

#result {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

#hint {
    font-size: 16px;
    font-weight: normal;
    color: #ff9800;
    margin-top: 10px;
}
