body {
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #001f3f;
}

.converter-container {
    text-align: center;
    max-width: 400px;
    background-color: #ffd700; /* Golden Background Color */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Light Box Shadow */
}

/* Rest of the CSS remains unchanged */


img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

h1 {
    margin-top: 10px;
    color: #333;
    font-size: 1.5em;
}

label {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
}

select, input {
    margin-top: 5px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    cursor: pointer;
    background-color: #4caf50; 
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

button:hover {
     background-color: #45a049; /* Darker Green Hover Color */
     transform: scale(1.05); 
}

#result {
    margin-top: 15px;
    font-size: 1.2em;
    color: #333;
}

